summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2012-09-08 00:12:51 -0700
committerMatthieu Patou <mat@samba.org>2012-09-10 05:57:21 +0200
commitf2ec75c7df5965f474a3c9444b23bcfe2818fe90 (patch)
treef829d3378d3d5b7f7fdbed899d51a7ab0bd79c24 /lib/replace
parente5ecef66391235ecb6a8da80140a760e02f2d7c2 (diff)
downloadsamba-f2ec75c7df5965f474a3c9444b23bcfe2818fe90.tar.gz
samba-f2ec75c7df5965f474a3c9444b23bcfe2818fe90.tar.bz2
samba-f2ec75c7df5965f474a3c9444b23bcfe2818fe90.zip
osX define uint64_t as long long int
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/replace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/replace.h b/lib/replace/replace.h
index fa7cc78fa4..c7f9c71175 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"