diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2025-04-29 19:17:52 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2025-05-16 08:54:14 +0200 |
commit | 997f5b187a076e01ba9524ab1830ca6f7dc5f406 (patch) | |
tree | d1c0ff5bd7a8daf57c19575ecd004ea112db6729 | |
parent | f09e8fb819e4763e24d81e5edd0bb1c9afd44d3e (diff) |
fix missing space in error message
-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 } - |