From 1bb0c0bd30f6f140f747f8c9814a08a0d626c044 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 5 Sep 2016 18:26:19 -0700 Subject: [PATCH] explicitly cast away constness to silence compiler warning --- Modules/readline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/readline.c b/Modules/readline.c index 383b19abbcc..54f15bc1c93 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -1063,7 +1063,7 @@ done: Py_XDECREF(readlinestate_global->endidx); readlinestate_global->begidx = PyLong_FromLong((long) start); readlinestate_global->endidx = PyLong_FromLong((long) end); - result = completion_matches(text, *on_completion); + result = completion_matches((char *)text, *on_completion); #ifdef WITH_THREAD PyGILState_Release(gilstate); #endif