summaryrefslogtreecommitdiffstats
path: root/tools/padjffs2
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-07-02 09:47:19 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-07-02 09:47:19 +0000
commit49e32bd67811d89d81558b956c260e74aefdbe88 (patch)
tree3866c7673ca8fb5850344b0ab5a8baad51ff6034 /tools/padjffs2
parent9fe98cb022b0dc894213f09cce9c32f259b148bd (diff)
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
Diffstat (limited to 'tools/padjffs2')
-rw-r--r--tools/padjffs2/src/padjffs2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/padjffs2/src/padjffs2.c b/tools/padjffs2/src/padjffs2.c
index 679992d9a..58d99140d 100644
--- a/tools/padjffs2/src/padjffs2.c
+++ b/tools/padjffs2/src/padjffs2.c
@@ -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;