diff options
| -rw-r--r-- | common/cmd_yaffs2.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_yaffs2.c b/common/cmd_yaffs2.c index 7c01ea2a2..0e22d90e7 100644 --- a/common/cmd_yaffs2.c +++ b/common/cmd_yaffs2.c @@ -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); |