fix incorrect std namespacing

This commit is contained in:
Shelley Vohr 2017-09-23 22:55:52 -04:00
parent 94f46c9059
commit 223942bf99
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

@ -107,7 +107,7 @@ void OverrideWinAppLogsPath() {
void OverrideLinuxAppLogsPath() {
std::string appName = GetApplicationName();
std::string homePath = std:string(getenv("HOME"));
std::string homePath = std::string(getenv("HOME"));
std::string appLogPath = homePath + "/.config/" + appName + "/logs";
int status = mkdir(appLogPath.c_str(), S_IRWXU | S_IRGRP | S_IROTH);