summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-02-28 18:33:35 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-02-28 18:33:35 (GMT)
commit85b1052efe2112cdc36aeb9df03ea4d07d703e7e (patch)
tree88edea1572b32f5275b75d1fa57fe1de3afb55ba /Modules
parent710ab3b5f8d114b9be200af135c6327117b8c676 (diff)
downloadcpython-85b1052efe2112cdc36aeb9df03ea4d07d703e7e.zip
cpython-85b1052efe2112cdc36aeb9df03ea4d07d703e7e.tar.gz
cpython-85b1052efe2112cdc36aeb9df03ea4d07d703e7e.tar.bz2
Another bit of unconstification.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_bsddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 647b143..c769a11 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 */