diff options
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 5210809..7a57719 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -2413,7 +2413,7 @@ test_with_docstring(PyObject *self) static PyObject * test_string_to_double(PyObject *self) { double result; - char *msg; + const char *msg; #define CHECK_STRING(STR, expected) \ result = PyOS_string_to_double(STR, NULL, NULL); \ |