From be445e6db9b723348ee64a6060fec35dca811bd5 Mon Sep 17 00:00:00 2001 From: mkrsym1 Date: Wed, 2 Aug 2023 02:29:18 +0300 Subject: [PATCH] Fix _create_driver_file error message --- game_payload/src/ace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game_payload/src/ace.c b/game_payload/src/ace.c index dfb14ef..88064ab 100644 --- a/game_payload/src/ace.c +++ b/game_payload/src/ace.c @@ -38,7 +38,7 @@ static void _create_driver_file(const char *path) { HANDLE file = CreateFileA(path, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (file == INVALID_HANDLE_VALUE) { - msg_err_a("Could not create driver file: %s", file); + msg_err_a("Could not create driver file: %s", path); } CloseHandle(file);