aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-04-21 14:06:09 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-04-21 14:06:09 +0200
commitc197df8cb7447a5b78c5086626e518c610321f99 (patch)
tree74ba4a8aee603c14b55b20f355c24805770a991b
parentFix CommandLine socketPath define (diff)
downloadsmolbote-c197df8cb7447a5b78c5086626e518c610321f99.tar.xz
Why was there a '=' after return
-rw-r--r--src/commandline.cpp2
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
}