1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-02 12:20:51 +00:00

In contrib/bzip2/bzip2recover.c, use the correct printf length modifier

for unsigned long long.

MFC after:	1 week
This commit is contained in:
Dimitry Andric 2011-12-17 12:52:58 +00:00
parent 1e629ba90f
commit 586f63035f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228624

View File

@ -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;