* Fix startup problems with VFD display on TRAB

* Patch by Pierre Aubert, 20 Nov 2002
  Add driver for Epson SED13806 graphic controller.
  Add support for BMP logos in cfb_console driver.
diff --git a/tools/mkimage.c b/tools/mkimage.c
index 0f99f3b..095880e 100644
--- a/tools/mkimage.c
+++ b/tools/mkimage.c
@@ -250,8 +250,9 @@
 	 */
 	if (xflag) {
 		if (ep != addr + sizeof(image_header_t)) {
-			fprintf (stderr, "%s: For XIP, the entry point must be the load addr + %d\n",
-				cmdname, sizeof(image_header_t));
+			fprintf (stderr, "%s: For XIP, the entry point must be the load addr + %lu\n",
+				cmdname,
+				(unsigned long)sizeof(image_header_t));
 			exit (EXIT_FAILURE);
 		}
 	}