commit 9d190befdc8545ecea86d02c3f78ce7e3c0a4611
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 19:54:43 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 19:54:43 2018 +0300
strife: Fix const correctness issue in PrintDehackedBanners
---
src/strife/d_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index e3f12406..f9ca3c76 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -983,7 +983,7 @@ void PrintDehackedBanners(void)
for (i=0; i<arrlen(copyright_banners); ++i)
{
- char *deh_s;
+ const char *deh_s;
deh_s = DEH_String(copyright_banners[i]);