From 06963ed36ffcdd465437149096cb6c28f7f1833e Mon Sep 17 00:00:00 2001 From: blahpy Date: Fri, 11 Sep 2020 10:30:45 +1200 Subject: [PATCH] reformat using clang-format --- common/util/FileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/util/FileUtil.cpp b/common/util/FileUtil.cpp index 163bc7d2ee..5db532eef5 100644 --- a/common/util/FileUtil.cpp +++ b/common/util/FileUtil.cpp @@ -16,7 +16,7 @@ std::string FileUtil::GetProjectPath() { "\\jak-project\\"); // Strip file path down to \jak-project\ directory return std::string(buffer).substr( 0, pos + 12); // + 12 to include "\jak-project" in the returned filepath -#else // do Linux stuff +#else // do Linux stuff char buffer[FILENAME_MAX]; readlink("/proc/self/exe", buffer, FILENAME_MAX); // /proc/self acts like a "virtual folder" containing information about