From 92d88e90577bab41fc243c8f865146c730a9a752 Mon Sep 17 00:00:00 2001 From: tma Date: Tue, 13 Oct 2009 15:58:23 +0000 Subject: * Fix MinGW build (it doesn't have _putenv_s) git-svn-id: svn://svn.icculus.org/quake3/trunk@1665 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code') diff --git a/code/qcommon/common.c b/code/qcommon/common.c index b8bef85..b24e4ce 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); -- cgit v1.2.3