summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2011-01-11 18:17:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-01-19 00:48:47 (GMT)
commit5ee5f5a65d5a60cd327f1a4b92ee0f48508f2362 (patch)
treed45c8b1a1c8364e8ceeec6dd7b141e0da5fcbb23
parent60a2e3320f3030d7c1f453a8cadafad7012fd820 (diff)
downloadgit-5ee5f5a65d5a60cd327f1a4b92ee0f48508f2362.zip
git-5ee5f5a65d5a60cd327f1a4b92ee0f48508f2362.tar.gz
git-5ee5f5a65d5a60cd327f1a4b92ee0f48508f2362.tar.bz2
svndump.c: Fix a printf format compiler warning
In particular, on systems that define uint32_t as an unsigned long, gcc complains as follows: CC vcs-svn/svndump.o vcs-svn/svndump.c: In function `svndump_read': vcs-svn/svndump.c:215: warning: int format, uint32_t arg (arg 2) In order to suppress the warning we use the C99 format specifier macro PRIu32 from <inttypes.h>. Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Acked-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--vcs-svn/svndump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c
index fa580e6..2ad2c30 100644
--- a/vcs-svn/svndump.c
+++ b/vcs-svn/svndump.c
@@ -211,7 +211,7 @@ void svndump_read(const char *url)
if (key == keys.svn_fs_dump_format_version) {
dump_ctx.version = atoi(val);
if (dump_ctx.version > 2)
- die("expected svn dump format version <= 2, found %d",
+ die("expected svn dump format version <= 2, found %"PRIu32,
dump_ctx.version);
} else if (key == keys.uuid) {
dump_ctx.uuid = pool_intern(val);