Kaydet (Commit) 4201b9e4 authored tarafından Fred Drake's avatar Fred Drake

type_error(): Added "const" to signature to eliminate warning with -Wall.

üst 3be9a8a5
......@@ -16,7 +16,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
/* Shorthands to return certain errors */
static PyObject *
type_error(char *msg)
type_error(const char *msg)
{
PyErr_SetString(PyExc_TypeError, msg);
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