Skip to content

Commit

Permalink
Update GetDirectoryName namespace to the one in FML on Linux. (flutte…
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaygarde authored and goderbauer committed Jul 26, 2018
1 parent dbd2f57 commit de206ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fml/platform/linux/paths_linux.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ std::pair<bool, std::string> GetExecutableDirectoryPath() {
if (read_size == -1) {
return {false, ""};
}
return {true, files::GetDirectoryName(
return {true, fml::paths::GetDirectoryName(
std::string{path, static_cast<size_t>(read_size)})};
}

Expand Down

0 comments on commit de206ea

Please sign in to comment.