From 997f5b187a076e01ba9524ab1830ca6f7dc5f406 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 29 Apr 2025 19:17:52 +0200 Subject: fix missing space in error message --- compat/shm.cpp | 3 +-- 1 file changed, 1 insertion(+), 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 -# 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 } - -- cgit v1.2.3