From: Michael Brown Date: Fri, 12 Jan 2007 08:57:51 +0000 (+0000) Subject: Add debug message X-Git-Tag: v0.9.3~647 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eba3609e7fbdac3eb186eea48b58aa215472a734;p=thirdparty%2Fipxe.git Add debug message --- diff --git a/src/core/image.c b/src/core/image.c index ce69c8a3c..be0eecf98 100644 --- a/src/core/image.c +++ b/src/core/image.c @@ -136,6 +136,7 @@ int image_autoload ( struct image *image ) { int rc; for ( type = image_types ; type < image_types_end ; type++ ) { + DBGC ( image, "IMAGE %p trying type %s\n", image, type->name ); rc = type->load ( image ); if ( image->type == NULL ) continue;