summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-09-10 00:41:14 +0200
committerWolfgang Denk <wd@denx.de>2011-09-10 01:10:32 +0200
commitaaf6935b223ccf746d1504661d2c40bf73698d3b (patch)
tree9c85de1794120058a3bc102f861584bebe77b833
parent5ae0dea3e8659a79d0284647341af2bfc349fecf (diff)
downloadblackbird-obmc-uboot-aaf6935b223ccf746d1504661d2c40bf73698d3b.tar.gz
blackbird-obmc-uboot-aaf6935b223ccf746d1504661d2c40bf73698d3b.zip
UBIFS: fix warning: format '%lX' expects type 'long unsigned int'
Commit 46d7274 "UBIFS: Change ubifsload to set the filesize variable" introduced the follwing compiler warning: ubifs.c: In function 'ubifs_load': ubifs.c:742: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'u32' Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Bastian Ruppert <Bastian.Ruppert@Sewerin.de>
-rw-r--r--fs/ubifs/ubifs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c
index 2e6313a89f..604eb8fdc2 100644
--- a/fs/ubifs/ubifs.c
+++ b/fs/ubifs/ubifs.c
@@ -739,7 +739,7 @@ int ubifs_load(char *filename, u32 addr, u32 size)
if (err)
printf("Error reading file '%s'\n", filename);
else {
- sprintf(buf, "%lX", size);
+ sprintf(buf, "%X", size);
setenv("filesize", buf);
printf("Done\n");
}
OpenPOWER on IntegriCloud