From 1fe7d93891905b9af1d81c9aef7b5646452ceb41 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 8 May 2013 08:05:58 +0000 Subject: image: Remove remaining #ifdefs in image-fit.c There are only two left. One is unnecessary and the other can be moved to the header file. Signed-off-by: Simon Glass --- common/image.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'common/image.c') diff --git a/common/image.c b/common/image.c index 564ed90ca0..d249758d57 100644 --- a/common/image.c +++ b/common/image.c @@ -296,12 +296,7 @@ void image_print_contents(const void *ptr) const image_header_t *hdr = (const image_header_t *)ptr; const char *p; -#ifdef USE_HOSTCC - p = ""; -#else - p = " "; -#endif - + p = IMAGE_INDENT_STRING; printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); if (IMAGE_ENABLE_TIMESTAMP) { printf("%sCreated: ", p); -- cgit v1.2.1