diff options
-rw-r--r-- | compat/shm.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/shm.cpp b/compat/shm.cpp index f59469dc..341de40f 100644 --- a/compat/shm.cpp +++ b/compat/shm.cpp @@ -17,7 +17,7 @@ #ifdef QT_CORE_LIB # include <QDebug> -# define warn(str, ...) (qDebug() << "shm:" str ": " << __VA_ARGS__) +# define warn(str, ...) (qDebug() << "shm " str ": " << __VA_ARGS__) #else # define warn(str, ...) (void)0 #endif @@ -134,4 +134,3 @@ bool shm_wrapper::success() return mem != nullptr; #endif } - |