From 639fdb4ed332acfcb531a14cf3b2569ba2cad938 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 13 Oct 2009 15:58:23 +0000 Subject: [PATCH] * Fix MinGW build (it doesn't have _putenv_s) --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);