From 0e8fe17157d851039c98059dc70aae4193cd4421 Mon Sep 17 00:00:00 2001 From: dashodanger Date: Sun, 9 Jun 2024 17:53:49 -0600 Subject: [PATCH] Fix search and replace goof --- source/lib_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib_util.cc b/source/lib_util.cc index dacb9ae0b..119427efe 100644 --- a/source/lib_util.cc +++ b/source/lib_util.cc @@ -123,7 +123,7 @@ bool IsPathAbsolute(std::string_view path) FILE *FileOpen(std::string_view name, std::string_view mode) { SYS_ASSERT(!name.empty()); - return FileOpen(std::string(name).c_str(), std::string(mode).c_str()); + return fopen(std::string(name).c_str(), std::string(mode).c_str()); } bool FileRename(std::string_view oldname, std::string_view newname) {