From 07f10a014071bbe642ac463683c79daf8e964762 Mon Sep 17 00:00:00 2001 From: cc9cii Date: Fri, 5 Dec 2014 01:32:20 +1100 Subject: [PATCH] Use append syntax compatible with older versions of boost. --- apps/opencs/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/opencs/editor.cpp b/apps/opencs/editor.cpp index dc4044fea..2aee21d38 100644 --- a/apps/opencs/editor.cpp +++ b/apps/opencs/editor.cpp @@ -239,7 +239,7 @@ bool CS::Editor::makeIPCServer() try { mPid = boost::filesystem::temp_directory_path(); - mPid += "opencs.pid"; + mPid /= "opencs.pid"; bool pidExists = boost::filesystem::exists(mPid); boost::filesystem::ofstream tempFile(mPid);