From de206ea95364c64f7ff2eac23db6671a290ca89d Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Thu, 26 Jul 2018 13:40:29 -0700 Subject: [PATCH] Update GetDirectoryName namespace to the one in FML on Linux. (#5879) --- fml/platform/linux/paths_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)})}; }