From 7845528fbf20e43516f03413754a44b7f201f6e1 Mon Sep 17 00:00:00 2001 From: Mineplay Date: Sun, 21 Dec 2025 13:09:41 +0100 Subject: [PATCH] fix(tests): fixed file generation in tools for linux --- tests/tools/tool-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tools/tool-file.c b/tests/tools/tool-file.c index 2654378..5d84a0d 100644 --- a/tests/tools/tool-file.c +++ b/tests/tools/tool-file.c @@ -63,7 +63,7 @@ int cosms_core_tool_file_generate_delete_file(void) { fclose(file); - fopen_s(&file, LARGE_DELETE_FILE_PATH, "wb"); + file = fopen(LARGE_DELETE_FILE_PATH, "wb"); if (file == NULL) { return -1; }