Author: sebor
Date: Tue Oct 30 13:56:53 2007
New Revision: 590463

URL: http://svn.apache.org/viewvc?rev=590463&view=rev
Log:
2007-10-30  Martin Sebor  <[EMAIL PROTECTED]>

        * CTYPE_BITS.cpp (main): Removed a stray '=' from test output.

Modified:
    incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp

Modified: incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp?rev=590463&r1=590462&r2=590463&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp Tue Oct 30 
13:56:53 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);
 


Reply via email to