fix incorrect std namespacing
This commit is contained in:
parent
94f46c9059
commit
223942bf99
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ void OverrideWinAppLogsPath() {
|
||||||
|
|
||||||
void OverrideLinuxAppLogsPath() {
|
void OverrideLinuxAppLogsPath() {
|
||||||
std::string appName = GetApplicationName();
|
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";
|
std::string appLogPath = homePath + "/.config/" + appName + "/logs";
|
||||||
|
|
||||||
int status = mkdir(appLogPath.c_str(), S_IRWXU | S_IRGRP | S_IROTH);
|
int status = mkdir(appLogPath.c_str(), S_IRWXU | S_IRGRP | S_IROTH);
|
||||||
|
|
Loading…
Reference in a new issue