]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utils.cpp
Upgrade bundled zlib to 1.2.8.
[wxWidgets.git] / src / msw / utils.cpp
index ce4b688f887fea745258670615541f3d75d50718..0610186a211fe5f262f0fa9057e17a4c1499168b 100644 (file)
@@ -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) )