Author: dim
Date: Sun Jan  1 18:29:37 2012
New Revision: 229182
URL: http://svn.freebsd.org/changeset/base/229182

Log:
  MFC r228624:
  
  In contrib/bzip2/bzip2recover.c, use the correct printf length modifier
  for unsigned long long.

Modified:
  stable/9/contrib/bzip2/bzip2recover.c
Directory Properties:
  stable/9/contrib/bzip2/   (props changed)

Modified: stable/9/contrib/bzip2/bzip2recover.c
==============================================================================
--- stable/9/contrib/bzip2/bzip2recover.c       Sun Jan  1 18:25:16 2012        
(r229181)
+++ stable/9/contrib/bzip2/bzip2recover.c       Sun Jan  1 18:29:37 2012        
(r229182)
@@ -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"

Reply via email to