From 586f63035fbe5e45cfc971037fd76375661ece26 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Sat, 17 Dec 2011 12:52:58 +0000 Subject: [PATCH] In contrib/bzip2/bzip2recover.c, use the correct printf length modifier for unsigned long long. MFC after: 1 week --- contrib/bzip2/bzip2recover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bzip2/bzip2recover.c b/contrib/bzip2/bzip2recover.c index f9de0496abf..bf3bca5b2ed 100644 --- a/contrib/bzip2/bzip2recover.c +++ b/contrib/bzip2/bzip2recover.c @@ -37,7 +37,7 @@ */ #ifdef __GNUC__ typedef unsigned long long int MaybeUInt64; -# define MaybeUInt64_FMT "%Lu" +# define MaybeUInt64_FMT "%llu" #else #ifdef _MSC_VER typedef unsigned __int64 MaybeUInt64;