diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-04-14 14:11:55 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-04-14 14:14:30 (GMT) |
commit | 1657a030b340050f3e813a9a8d34df93e115c7be (patch) | |
tree | 820a2e14a0126ff1f2fcd62c669fc0b2c4880a00 /src/gui/kernel/qmacdefines_mac.h | |
parent | 99ed68cda10355dba5c7a3e2466ee45b59dbb555 (diff) | |
download | Qt-1657a030b340050f3e813a9a8d34df93e115c7be.zip Qt-1657a030b340050f3e813a9a8d34df93e115c7be.tar.gz Qt-1657a030b340050f3e813a9a8d34df93e115c7be.tar.bz2 |
Fix warning: "__LP64__" is not defined"
Reviewed-by: Norwegian Rock Cat
Diffstat (limited to 'src/gui/kernel/qmacdefines_mac.h')
-rw-r--r-- | src/gui/kernel/qmacdefines_mac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qmacdefines_mac.h b/src/gui/kernel/qmacdefines_mac.h index 97ec544..035b8c5 100644 --- a/src/gui/kernel/qmacdefines_mac.h +++ b/src/gui/kernel/qmacdefines_mac.h @@ -105,7 +105,7 @@ Yes, it is an informative comment ;-) # undef qDebug #endif -#if __LP64__ +#ifdef __LP64__ typedef signed int OSStatus; #else typedef signed long OSStatus; |