diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-31 01:20:58 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-31 01:20:58 -0400 |
commit | 7f69dcac166abc21dc762e07fdf6a338520ee2e6 (patch) | |
tree | c9596333cfe3da40f59af4098c9be8b52190839e /Python/getcopyright.c | |
parent | 9b83d533e2651fa80b81abb114eb6e43c1e383c9 (diff) | |
download | cpython-git-7f69dcac166abc21dc762e07fdf6a338520ee2e6.tar.gz |
make string literal const
Diffstat (limited to 'Python/getcopyright.c')
-rw-r--r-- | Python/getcopyright.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 2d26787dfb..2b19622d43 100644 --- a/Python/getcopyright.c +++ b/Python/getcopyright.c @@ -2,7 +2,7 @@ #include "Python.h" -static char cprt[] = +static const char cprt[] = "\ Copyright (c) 2001-2013 Python Software Foundation.\n\ All Rights Reserved.\n\ |