From 056a69cba6c6249b12ceffb7f00c324f5a8f16d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Wed, 1 Mar 2006 16:55:42 +0000 Subject: Reconst parameters that lost their const in the AST merge. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index bbe935297d..a98c85ac10 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -638,7 +638,7 @@ initsite(void) /* Parse input from a file and execute it */ int -PyRun_AnyFileExFlags(FILE *fp, char *filename, int closeit, +PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags) { if (filename == NULL) -- cgit v1.2.1