From c279f9e90e635d3feb729b516e23c606cb3469a7 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 1 Sep 2008 07:36:09 +0200 Subject: [PATCH] const fix by Lisandro --- Cython/Compiler/Nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.26.2