From 4ae06c5337e01bdde28bce57b6b9166ad50947e3 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 12 Dec 2017 13:55:04 +0200 Subject: bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748) --- Python/frozenmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/frozenmain.c') diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 77602d70fa..a3b619671b 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -23,7 +23,7 @@ Py_FrozenMain(int argc, char **argv) exit(1); } - char *p; + const char *p; int i, n, sts = 1; int inspect = 0; int unbuffered = 0; -- cgit v1.2.1