From 9cd974440741eecba48c587868b305382e5d6c4b Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 27 May 2023 19:40:44 +0300 Subject: [PATCH] filesystem: fix Windows build --- filesystem/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesystem/filesystem.c b/filesystem/filesystem.c index e6bfa254..4e786d9f 100644 --- a/filesystem/filesystem.c +++ b/filesystem/filesystem.c @@ -1716,7 +1716,7 @@ int FS_SetCurrentDirectory( const char *path ) NULL, GetLastError(), MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ), buf, sizeof( buf ), NULL ); - Sys_Error( "Changing directory to %s failed: %s\n", path, buf ) + Sys_Error( "Changing directory to %s failed: %s\n", path, buf ); return false; } #elif XASH_POSIX