You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/10/30 21:58:18 UTC

svn commit: r590464 - /incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp

Author: sebor
Date: Tue Oct 30 13:58:18 2007
New Revision: 590464

URL: http://svn.apache.org/viewvc?rev=590464&view=rev
Log:
2007-10-30  Martin Sebor  <se...@roguewave.com>

	Merged rev 590463 from branches/4.2.x.
	* CTYPE_BITS.cpp (main): Removed a stray '=' from test output.

Modified:
    incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp

Modified: incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp?rev=590464&r1=590463&r2=590464&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp (original)
+++ incubator/stdcxx/trunk/etc/config/src/CTYPE_BITS.cpp Tue Oct 30 13:58:18 2007
@@ -215,7 +215,7 @@
         if (-1 != bits [i].val) {
             used |= bits [i].val;
 
-            printf ("#define _RWSTD_CTYPE_%s = %#010x"
+            printf ("#define _RWSTD_CTYPE_%s %#010x"
                     "   /* libc value */\n",
                     bits [i].name, bits [i].val);
         }
@@ -228,7 +228,7 @@
 
                     used |= 1 << i;
 
-                    printf ("#define _RWSTD_CTYPE_%s = %#010x"
+                    printf ("#define _RWSTD_CTYPE_%s %#010x"
                             "   /* computed */\n",
                             bits [j].name, 1 << i);