Re: [U-Boot] [PATCH 2/6] YAFFS2: fs/yaffs2/yaffscfg.c - fix build warnings

2011-09-09 Thread Wolfgang Denk
Dear Wolfgang Denk,

In message 1315483822-25399-3-git-send-email...@denx.de you wrote:
 Fix these:
 yaffscfg.c: In function 'cmd_yaffs_mread_file':
 yaffscfg.c:316: warning: format '%08x' expects type 'unsigned int', but 
 argument 3 has type 'char *'
 yaffscfg.c: In function 'cmd_yaffs_ls': yaffscfg.c:371: warning: format '%7d' 
 expects type 'int', but argument 3 has type 'off_t'
 
 Signed-off-by: Wolfgang Denk w...@denx.de
 ---
  fs/yaffs2/yaffscfg.c |4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
HR Manager to job candidate I see you've had no  computer  training.
Although  that  qualifies  you  for upper management, it means you're
under-qualified for our entry level positions.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 2/6] YAFFS2: fs/yaffs2/yaffscfg.c - fix build warnings

2011-09-08 Thread Wolfgang Denk
Fix these:
yaffscfg.c: In function 'cmd_yaffs_mread_file':
yaffscfg.c:316: warning: format '%08x' expects type 'unsigned int', but 
argument 3 has type 'char *'
yaffscfg.c: In function 'cmd_yaffs_ls': yaffscfg.c:371: warning: format '%7d' 
expects type 'int', but argument 3 has type 'off_t'

Signed-off-by: Wolfgang Denk w...@denx.de
---
 fs/yaffs2/yaffscfg.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/yaffs2/yaffscfg.c b/fs/yaffs2/yaffscfg.c
index 16e84a4..01399ea 100644
--- a/fs/yaffs2/yaffscfg.c
+++ b/fs/yaffs2/yaffscfg.c
@@ -313,7 +313,7 @@ void cmd_yaffs_mread_file(char *fn, char *addr)
 
yaffs_stat(fn,s);
 
-   printf (Copy %s to 0x%08x... , fn, addr);
+   printf (Copy %s to 0x%p... , fn, addr);
h = yaffs_open(fn, O_RDWR,0);
if(h0)
{
@@ -368,7 +368,7 @@ void cmd_yaffs_ls(const char *mountpt, int longlist)
{
sprintf(tempstr, %s/%s, mountpt, de-d_name);
yaffs_stat(tempstr, stat);
-   printf(%-25s\t%7d\n,de-d_name, stat.st_size);
+   printf(%-25s\t%7ld\n,de-d_name, 
stat.st_size);
}
else
{
-- 
1.7.6

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot