Author: dim Date: Sat Dec 17 12:52:58 2011 New Revision: 228624 URL: http://svn.freebsd.org/changeset/base/228624
Log: In contrib/bzip2/bzip2recover.c, use the correct printf length modifier for unsigned long long. MFC after: 1 week Modified: head/contrib/bzip2/bzip2recover.c Modified: head/contrib/bzip2/bzip2recover.c ============================================================================== --- head/contrib/bzip2/bzip2recover.c Sat Dec 17 11:06:22 2011 (r228623) +++ head/contrib/bzip2/bzip2recover.c Sat Dec 17 12:52:58 2011 (r228624) @@ -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; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"