[Python-checkins] r42663 - python/trunk/Modules/_bsddb.c

tim.peters python-checkins at python.org
Tue Feb 28 19:33:36 CET 2006


Author: tim.peters
Date: Tue Feb 28 19:33:35 2006
New Revision: 42663

Modified:
   python/trunk/Modules/_bsddb.c
Log:
Another bit of unconstification.


Modified: python/trunk/Modules/_bsddb.c
==============================================================================
--- python/trunk/Modules/_bsddb.c	(original)
+++ python/trunk/Modules/_bsddb.c	Tue Feb 28 19:33:35 2006
@@ -1800,7 +1800,7 @@
     static char* kwnames[] = {
         "filename", "dbname", "dbtype", "flags", "mode", "txn", NULL};
     /* without dbname */
-    static const char* kwnames_basic[] = {
+    static char* kwnames_basic[] = {
         "filename", "dbtype", "flags", "mode", "txn", NULL};
 #else
     /* with dbname */


More information about the Python-checkins mailing list