commit | 898f1879e1bf6fe0a0d94d2abe8e8f5b32f795c1 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Jan 21 21:14:21 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Jan 21 21:14:21 2008 +0000 |
tree | c4fa1ea4949be76b91bab60ffccebb750e104e3a | |
parent | f2dae0e14a79df11135fea05c20f66bcada51c06 [diff] [blame] |
Add a "const" to make gcc happy.
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index bbfbe7d..6e74c7b 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c
@@ -586,7 +586,7 @@ { PyObject* utf8 = NULL; const char *s; - char *newl[2] = {NULL, NULL}; + const char *newl[2] = {NULL, NULL}; int lineno = 0; tok->enc = NULL; tok->str = str;