From: Matthieu Patou Date: Sat, 8 Sep 2012 07:12:51 +0000 (-0700) Subject: osX define uint64_t as long long int X-Git-Tag: samba-4.0.0rc1~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f2ec75c7df5965f474a3c9444b23bcfe2818fe90;p=thirdparty%2Fsamba.git osX define uint64_t as long long int --- diff --git a/lib/replace/replace.h b/lib/replace/replace.h index fa7cc78fa4e..c7f9c711757 100644 --- a/lib/replace/replace.h +++ b/lib/replace/replace.h @@ -61,7 +61,7 @@ #endif #ifndef __PRI64_PREFIX -# if __WORDSIZE == 64 +# if __WORDSIZE == 64 && ! defined __APPLE__ # define __PRI64_PREFIX "l" # else # define __PRI64_PREFIX "ll"