From: Felix Fietkau <nbd@openwrt.org>
Date: Sat, 2 Jul 2011 09:47:19 +0000 (+0000)
Subject: padjffs2: fix a compiler warning that makes the build fail because of -Werror
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e194acb471e4e304b3a7aeb144d8ce8472dc8092;p=lede.git

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

SVN-Revision: 27361
---

diff --git a/tools/padjffs2/src/padjffs2.c b/tools/padjffs2/src/padjffs2.c
index 679992d9ad..58d99140d9 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;