(svn r26709) -Fix (r15892 and others) [FS#6069]: [OSX] Compilation fails with some lzo2 versions if we define __LP64__ as 0 instead of checking whether it is defined (kernigh2)

This commit is contained in:
planetmaker
2014-07-30 20:19:29 +00:00
parent 60b07504ee
commit cd084721b4
6 changed files with 68 additions and 76 deletions

View File

@@ -33,7 +33,7 @@
#endif
/* printf format specification for 32/64-bit addresses. */
#if __LP64__
#ifdef __LP64__
#define PRINTF_PTR "0x%016lx"
#else
#define PRINTF_PTR "0x%08lx"