Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2019-03-21 09:26:40 +0300
committerMarkus Goetz <markus@woboq.com>2019-03-21 09:27:41 +0300
commit754deb286db3872ba0a23d7090ff0a15e0877e74 (patch)
tree7228008b4cbbfe548ac18e13377ea033826ea618 /shell_integration
parent6fa035c52809dd2a1451d223d29ec4338b54ea7a (diff)
Windows: Fix compile in shell_integration
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/windows/OCUtil/CommunicationSocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell_integration/windows/OCUtil/CommunicationSocket.cpp b/shell_integration/windows/OCUtil/CommunicationSocket.cpp
index 6f6f7f9d8..c0d85b1ad 100644
--- a/shell_integration/windows/OCUtil/CommunicationSocket.cpp
+++ b/shell_integration/windows/OCUtil/CommunicationSocket.cpp
@@ -48,7 +48,7 @@ std::wstring CommunicationSocket::DefaultPipePath()
{
auto pipename = std::wstring(L"\\\\.\\pipe\\");
pipename += APPLICATION_SHORTNAME;
- pipename += L"-"
+ pipename += L"-";
pipename += getUserName();
return pipename;
}