X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/daa3509726f9590cecc85f37ef882670667f0650..dd44c130144ad153bf67121a94b23a615db409f5:/src/msw/utils.cpp diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index ce4b688f88..0610186a21 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: 04/01/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -636,7 +635,7 @@ bool wxDoSetEnv(const wxString& var, const wxChar *value) envstr += '='; if ( value ) envstr += value; - if ( !_tputenv(envstr.t_str()) ) + if ( _tputenv(envstr.t_str()) != 0 ) return false; #else // other compiler if ( !::SetEnvironmentVariable(var.t_str(), value) )