diff --git a/code/qcommon/common.c b/code/qcommon/common.c index b8bef851..b24e4cec 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2364,7 +2364,7 @@ void Com_Setenv_f(void) #ifdef _WIN32 // windows already removes env variable if value is an empty string - _putenv_s(arg1, arg2); + _putenv(va("%s=%s", arg1, arg2)); #else if(!*arg2) unsetenv(arg1);