Re: [U-Boot] [PATCH] ext4: Fix printf() format string error

2012-10-29 Thread Tom Rini
On Tue, Oct 23, 2012 at 04:49:25PM -0700, Simon Glass wrote: > Fix the following error in the ext4 command: > > cmd_ext4.c:110:3: error: format '%lu' expects argument of type > 'long unsigned int', but argument 4 has type 'int' [-Werror=format] > > Signed-off-by: Simon Glass Applied to u-boot/

[U-Boot] [PATCH] ext4: Fix printf() format string error

2012-10-23 Thread Simon Glass
Fix the following error in the ext4 command: cmd_ext4.c:110:3: error: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'int' [-Werror=format] Signed-off-by: Simon Glass --- common/cmd_ext4.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --gi