You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2006/10/10 17:19:30 UTC

svn commit: r454778 - /incubator/stdcxx/trunk/tests/src/environ.cpp

Author: faridz
Date: Tue Oct 10 08:19:29 2006
New Revision: 454778

URL: http://svn.apache.org/viewvc?view=rev&rev=454778
Log:
2006-10-10 Farid Zaripov <fa...@kyiv.vdiweb.com>

	STDCXX-93
	* environ.cpp (rw_putenv): Added missing semicolon

Modified:
    incubator/stdcxx/trunk/tests/src/environ.cpp

Modified: incubator/stdcxx/trunk/tests/src/environ.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/src/environ.cpp?view=diff&rev=454778&r1=454777&r2=454778
==============================================================================
--- incubator/stdcxx/trunk/tests/src/environ.cpp (original)
+++ incubator/stdcxx/trunk/tests/src/environ.cpp Tue Oct 10 08:19:29 2006
@@ -134,7 +134,7 @@
             // try to remove variable from the environment
 
 #ifndef _RWSTD_NO_UNSETENV
-            ret = unsetenv (envvar)
+            ret = unsetenv (envvar);
 #else
             ret = putenv (envvar);
 #endif



Re: svn commit: r454778 - /incubator/stdcxx/trunk/tests/src/environ.cpp

Posted by Martin Sebor <se...@roguewave.com>.
faridz@apache.org wrote:
> Author: faridz
> Date: Tue Oct 10 08:19:29 2006
> New Revision: 454778
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=454778
> Log:
> 2006-10-10 Farid Zaripov <fa...@kyiv.vdiweb.com>
> 
> 	STDCXX-93
> 	* environ.cpp (rw_putenv): Added missing semicolon

Whoops, my bad! Thanks for fixing this one for me!

Martin