]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
YAFFS2: cmd_yaffs2.c - fix build warnings
authorWolfgang Denk <wd@denx.de>
Thu, 8 Sep 2011 02:10:17 +0000 (02:10 +0000)
committerWolfgang Denk <wd@denx.de>
Fri, 9 Sep 2011 22:00:15 +0000 (00:00 +0200)
Fix these:
cmd_yaffs2.c: In function 'do_ywr':
cmd_yaffs2.c:69: warning: format '%x' expects type 'unsigned int', but argument 2 has type 'ulong'
cmd_yaffs2.c:69: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'ulong'

Signed-off-by: Wolfgang Denk <wd@denx.de>
common/cmd_yaffs2.c

index 7c01ea2a2517ceb540de559e5de9dec046839e9d..0e22d90e7a0b392d46f556e2c90aff639c730c6d 100644 (file)
@@ -66,7 +66,7 @@ int do_ywr (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
     ulong value = simple_strtoul(argv[2], NULL, 16);
     ulong numValues = simple_strtoul(argv[3], NULL, 16);
 
-    printf ("Writing value (%x) %x times to %s... ", value, numValues, filename);
+    printf ("Writing value (%lx) %lx times to %s... ", value, numValues, filename);
 
     cmd_yaffs_write_file(filename,value,numValues);