diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-02 17:06:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:50 -0500 |
commit | a5d1826677f04065620c2c1949a16bf445ef3846 (patch) | |
tree | 4797088861b5041e454a07264fa9f66381cf33d7 /source4 | |
parent | b20d76085bdc2680c5890c0126f2955cf3807e5c (diff) | |
download | samba-a5d1826677f04065620c2c1949a16bf445ef3846.tar.gz samba-a5d1826677f04065620c2c1949a16bf445ef3846.tar.bz2 samba-a5d1826677f04065620c2c1949a16bf445ef3846.zip |
r16010: deal with the case that int64,uint64 are already typedef'ed
metze
(This used to be commit 07b014f770714474660f68c6ebc510bfbb232abc)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/appweb/mpr/miniMpr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/appweb/mpr/miniMpr.h b/source4/lib/appweb/mpr/miniMpr.h index 58f47d256a..43136d3f13 100644 --- a/source4/lib/appweb/mpr/miniMpr.h +++ b/source4/lib/appweb/mpr/miniMpr.h @@ -199,8 +199,8 @@ typedef unsigned char uchar; #ifndef uint #define uint unsigned #endif - typedef long long int int64; - typedef unsigned long long int uint64; + #define int64 int64_t + #define uint64 uint64_t #endif /* |