* python/py-utils.c (gdb_pymodule_addobject): Cast away const.
authorTom Tromey <tromey@redhat.com>
Wed, 5 Jun 2013 17:32:51 +0000 (17:32 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 5 Jun 2013 17:32:51 +0000 (17:32 +0000)
gdb/ChangeLog
gdb/python/py-utils.c

index 6b56ef5841e4fa6d3f7f1a7b3009b24b04b791c1..61a867d0c2286d95e17bb46fa85fa6f19cd77ca2 100644 (file)
@@ -1,3 +1,7 @@
+2013-06-05  Tom Tromey  <tromey@redhat.com>
+
+       * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
+
 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
            Pedro Alves  <palves@redhat.com>
 
index 7c7c5caee9b9f807bcbcaf7b7b984bec68f2d384..bbbdef4ad5b5cb8579d13512ea5a0bad03b729ee 100644 (file)
@@ -436,7 +436,8 @@ gdb_pymodule_addobject (PyObject *module, const char *name, PyObject *object)
   int result;
 
   Py_INCREF (object);
-  result = PyModule_AddObject (module, name, object);
+  /* Python 2.4 did not have a 'const' here.  */
+  result = PyModule_AddObject (module, (char *) name, object);
   if (result < 0)
     Py_DECREF (object);
   return result;