From 53f787d6ea1771c213fb5234f310fb8bebfce652 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 21 Aug 2025 21:54:10 -0400 Subject: [PATCH] refactor: deskflow-core adjust already running message --- src/apps/deskflow-core/deskflow-core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/deskflow-core/deskflow-core.cpp b/src/apps/deskflow-core/deskflow-core.cpp index a37ee16f3..8a5e1e24b 100644 --- a/src/apps/deskflow-core/deskflow-core.cpp +++ b/src/apps/deskflow-core/deskflow-core.cpp @@ -99,7 +99,7 @@ int main(int argc, char **argv) // If we can create 1 byte of SHM we are the only instance if (!sharedMemory.create(1)) { - LOG_WARN("an instance of deskflow core (server or client) is already running"); + LOG_WARN("an instance of deskflow core is already running"); return s_exitDuplicate; } #if SYSAPI_WIN32