| Index: base/basictypes.h
|
| ===================================================================
|
| --- base/basictypes.h (revision 79069)
|
| +++ base/basictypes.h (working copy)
|
| @@ -32,7 +32,7 @@
|
| //
|
| // On Mac OS X, |long long| is used for 64-bit types for compatibility with
|
| // <inttypes.h> format macros even in the LP64 model.
|
| -#if __LP64__ && !defined(OS_MACOSX)
|
| +#if defined(__LP64__) && !defined(OS_MACOSX)
|
| typedef long int64;
|
| #else
|
| typedef long long int64;
|
| @@ -54,7 +54,7 @@
|
| #endif
|
|
|
| // See the comment above about NSPR and 64-bit.
|
| -#if __LP64__ && !defined(OS_MACOSX)
|
| +#if defined(__LP64__) && !defined(OS_MACOSX)
|
| typedef unsigned long uint64;
|
| #else
|
| typedef unsigned long long uint64;
|
|
|