From: Ramsay Jones Date: Tue, 11 Jan 2011 18:17:21 +0000 (+0000) Subject: svndump.c: Fix a printf format compiler warning X-Git-Tag: v1.7.4-rc3~7 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5ee5f5a65d5a60cd327f1a4b92ee0f48508f2362;p=git.git 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 . Signed-off-by: Ramsay Jones Acked-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c index fa580e62d..2ad2c307d 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);