From 18c4eeebdc1f757fd1140c7620bc3573d47c2592 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Wed, 22 May 2013 00:28:41 +0200 Subject: [PATCH] compile fix --- src/PlatformUtils-posix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlatformUtils-posix.cc b/src/PlatformUtils-posix.cc index e581de68..d7b7b6d6 100644 --- a/src/PlatformUtils-posix.cc +++ b/src/PlatformUtils-posix.cc @@ -4,7 +4,7 @@ std::string PlatformUtils::documentsPath() { fs::path docpath(getenv("HOME")); - docpath /= ".local" / "share"; + docpath = docpath / ".local" / "share"; return boosty::stringy(docpath); }