diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:00:49 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:32:10 +0100 |
commit | 55907f6ce27520a5e596395b73a307b6ec2aeddc (patch) | |
tree | 06ed3178df05b87761d0d21e41dfcd82f3ea65ad /compat/shm.cpp | |
parent | 0773bf0794af5d558b01c39c955da7b3d534edc2 (diff) |
compat/shm: use right preprocessor check
Diffstat (limited to 'compat/shm.cpp')
-rw-r--r-- | compat/shm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/shm.cpp b/compat/shm.cpp index 791cb303..1f863190 100644 --- a/compat/shm.cpp +++ b/compat/shm.cpp @@ -15,7 +15,7 @@ #include <accctrl.h> #include <aclapi.h> -#if !defined __WINE__ +#ifdef QT_CORE_LIB # include <QDebug> # define warn(str, ...) (qDebug() << "shm:" str ": " << __VA_ARGS__) #else |