diff options
author | Matthieu Patou <mat@matws.net> | 2012-09-08 00:12:51 -0700 |
---|---|---|
committer | Matthieu Patou <mat@samba.org> | 2012-09-10 05:57:21 +0200 |
commit | f2ec75c7df5965f474a3c9444b23bcfe2818fe90 (patch) | |
tree | f829d3378d3d5b7f7fdbed899d51a7ab0bd79c24 /lib | |
parent | e5ecef66391235ecb6a8da80140a760e02f2d7c2 (diff) | |
download | samba-f2ec75c7df5965f474a3c9444b23bcfe2818fe90.tar.gz |
osX define uint64_t as long long int
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/replace.h | 2 |
1 files changed, 1 insertions, 1 deletions
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" |