Commit db4a629b authored by Guido van Rossum's avatar Guido van Rossum

Avoid warning from gcc on Linux about dropping const.

parent 16dffdca
......@@ -1466,7 +1466,7 @@ PyCurses_KeyName(self,arg)
PyObject * self;
PyObject * arg;
{
char *knp;
const char *knp;
int ch;
if (!PyArg_Parse(arg,"i",&ch))
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment