1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 00:53:50 +03:00

padjffs2: fix a compiler warning that makes the build fail because of -Werror

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27361 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-07-02 09:47:19 +00:00
parent 9fe98cb022
commit 49e32bd678

View File

@ -83,7 +83,7 @@ static int pad_image(char *name, uint32_t pad_mask)
pad_mask &= ~mask;
}
printf("padding image to %08x\n", in_len);
printf("padding image to %08x\n", (unsigned int) in_len);
while (out_len < in_len) {
ssize_t len;