Skip to content
Snippets Groups Projects
Commit 257c46c9 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

fileutils: C++11 requires a space between literal and identifier

Change-Id: I04e83a58ac93e6f9bf7470b7e7703fffcc3f7d80
parent 37c587f9
No related branches found
No related tags found
No related merge requests found
......@@ -274,8 +274,10 @@ get_data_dir()
const std::string data_home(XDG_DATA_HOME);
if (not data_home.empty())
return data_home + DIR_SEPARATOR_STR + PACKAGE;
// "If $XDG_DATA_HOME is either not set or empty, a default equal to $HOME/.local/share should be used."
return get_home_dir()+DIR_SEPARATOR_STR".local"DIR_SEPARATOR_STR"share"DIR_SEPARATOR_STR + PACKAGE;
// "If $XDG_DATA_HOME is either not set or empty, a default equal to
// $HOME/.local/share should be used."
return get_home_dir() + DIR_SEPARATOR_STR ".local" DIR_SEPARATOR_STR
"share" DIR_SEPARATOR_STR + PACKAGE;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment