diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-21 22:28:41 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-21 22:28:41 (GMT) |
commit | 18c4eeebdc1f757fd1140c7620bc3573d47c2592 (patch) | |
tree | aabf4efeee9755618f60c5371b6954d1246e0478 /src/PlatformUtils-posix.cc | |
parent | 41d1c94879f22f569082d4adf44427df2e7ed23b (diff) |
compile fix
Diffstat (limited to 'src/PlatformUtils-posix.cc')
-rw-r--r-- | src/PlatformUtils-posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlatformUtils-posix.cc b/src/PlatformUtils-posix.cc index e581de6..d7b7b6d 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); } |