From 6b988fcfdbc75c6baa4dff022c4de7bda5166be1 Mon Sep 17 00:00:00 2001 From: "Stephen C. Wills" Date: Sun, 27 Oct 2024 10:54:32 -0400 Subject: [PATCH] Fix clang-format violation (#7500) --- Source/utils/paths.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/utils/paths.cpp b/Source/utils/paths.cpp index 546c207d4..a5bd0db85 100644 --- a/Source/utils/paths.cpp +++ b/Source/utils/paths.cpp @@ -120,7 +120,7 @@ const std::string &AssetsPath() { if (!assetsPath) { #if defined(__HAIKU__) - char buffer[B_PATH_NAME_LENGTH+10]; + char buffer[B_PATH_NAME_LENGTH + 10]; find_directory(B_SYSTEM_DATA_DIRECTORY, dev_for_path("/boot"), false, buffer, B_PATH_NAME_LENGTH); strcat(buffer, "/devilutionx/"); assetsPath.emplace(strdup(buffer));