index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
summary
refs
log
tree
commit
diff
path:
root
/
tools
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Felix Fietkau <nbd@openwrt.org>
2011-07-02 09:47:19 +0000
committer
Felix Fietkau <nbd@openwrt.org>
2011-07-02 09:47:19 +0000
commit
e194acb471e4e304b3a7aeb144d8ce8472dc8092
(
patch
)
tree
f10a4f902f6b4713422b02ff6fefcff422637fb4
/
tools
parent
357a58811b8f500c6b2653fbe7a0fea2412534f7
(
diff
)
padjffs2: fix a compiler warning that makes the build fail because of -Werror
SVN-Revision: 27361
Diffstat
(limited to 'tools')
-rw-r--r--
tools/padjffs2/src/padjffs2.c
2
1 files changed, 1 insertions, 1 deletions
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;