mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
YAFFS2: fs/yaffs2/yaffscfg.c - fix build warnings
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 <wd@denx.de>
This commit is contained in:
parent
d1f7a899eb
commit
6ac360c465
1 changed files with 2 additions and 2 deletions
|
@ -313,7 +313,7 @@ void cmd_yaffs_mread_file(char *fn, char *addr)
|
||||||
|
|
||||||
yaffs_stat(fn,&s);
|
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);
|
h = yaffs_open(fn, O_RDWR,0);
|
||||||
if(h<0)
|
if(h<0)
|
||||||
{
|
{
|
||||||
|
@ -368,7 +368,7 @@ void cmd_yaffs_ls(const char *mountpt, int longlist)
|
||||||
{
|
{
|
||||||
sprintf(tempstr, "%s/%s", mountpt, de->d_name);
|
sprintf(tempstr, "%s/%s", mountpt, de->d_name);
|
||||||
yaffs_stat(tempstr, &stat);
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue