diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-04-21 14:06:09 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-04-21 14:06:09 +0200 |
commit | c197df8cb7447a5b78c5086626e518c610321f99 (patch) | |
tree | 74ba4a8aee603c14b55b20f355c24805770a991b /src | |
parent | Fix CommandLine socketPath define (diff) | |
download | smolbote-c197df8cb7447a5b78c5086626e518c610321f99.tar.xz |
Why was there a '=' after return
Diffstat (limited to 'src')
-rw-r--r-- | src/commandline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commandline.cpp b/src/commandline.cpp index 5b48ac7..6082686 100644 --- a/src/commandline.cpp +++ b/src/commandline.cpp @@ -46,7 +46,7 @@ constexpr const char *socketPath() return "/tmp/smolbote.socket"; #elif defined(Q_OS_WIN32) // could be a pipe path such as "\\.\pipe\foo" - return = "\\\\.\\pipe\\smolbote_socket"; + return "\\\\.\\pipe\\smolbote_socket"; #endif } |