From 7f69dcac166abc21dc762e07fdf6a338520ee2e6 Mon Sep 17 00:00:00 2001
From: Benjamin Peterson <benjamin@python.org>
Date: Thu, 31 Oct 2013 01:20:58 -0400
Subject: [PATCH] make string literal const

---
 Python/getcopyright.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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\
-- 
2.40.0