From 299ed904937c579fb9843cd25693763020ecfe97 Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 14 Feb 2023 09:44:31 -0800 Subject: [PATCH] `static`-qualify `mount_pre_datazip` This function is used nowhere else, so it should be made static and unable to be linked to from other files. --- desktop_version/src/FileSystemUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/FileSystemUtils.cpp b/desktop_version/src/FileSystemUtils.cpp index e507e29b..4b49ce64 100644 --- a/desktop_version/src/FileSystemUtils.cpp +++ b/desktop_version/src/FileSystemUtils.cpp @@ -74,7 +74,7 @@ static const PHYSFS_Allocator allocator = { SDL_free }; -void mount_pre_datazip( +static void mount_pre_datazip( char* out_path, const char* real_dirname, const char* mount_point,