diff --git a/fml/platform/linux/paths_linux.cc b/fml/platform/linux/paths_linux.cc index 574097072a9..9871e507444 100644 --- a/fml/platform/linux/paths_linux.cc +++ b/fml/platform/linux/paths_linux.cc @@ -18,7 +18,7 @@ std::pair GetExecutableDirectoryPath() { if (read_size == -1) { return {false, ""}; } - return {true, files::GetDirectoryName( + return {true, fml::paths::GetDirectoryName( std::string{path, static_cast(read_size)})}; }