From: Tim Peters <tim.peters@gmail.com>
Date: Tue, 28 Feb 2006 18:33:35 +0000 (+0000)
Subject: Another bit of unconstification.
X-Git-Tag: v2.5a0~481
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85b1052efe2112cdc36aeb9df03ea4d07d703e7e;p=python

Another bit of unconstification.
---

diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 647b143dd2..c769a11f19 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -1800,7 +1800,7 @@ DB_open(DBObject* self, PyObject* args, PyObject* kwargs)
     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 */