From: Stefan Behnel Date: Mon, 1 Sep 2008 05:36:09 +0000 (+0200) Subject: const fix by Lisandro X-Git-Tag: 0.9.9.2.beta~63^2~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c279f9e90e635d3feb729b516e23c606cb3469a7;p=cython.git const fix by Lisandro --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index c16b1116..ae1552d3 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -4364,7 +4364,7 @@ static INLINE void __Pyx_RaiseArgtupleInvalid( Py_ssize_t num_found) { Py_ssize_t num_expected; - char *number, *more_or_less; + const char *number, *more_or_less; if (num_found < num_min) { num_expected = num_min;