diff options
Diffstat (limited to 'gdb/python/py-infthread.c')
-rw-r--r-- | gdb/python/py-infthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-infthread.c b/gdb/python/py-infthread.c index 4d0a020..e5db354 100644 --- a/gdb/python/py-infthread.c +++ b/gdb/python/py-infthread.c @@ -62,7 +62,7 @@ static PyObject * thpy_get_name (PyObject *self, void *ignore) { thread_object *thread_obj = (thread_object *) self; - char *name; + const char *name; THPY_REQUIRE_VALID (thread_obj); |