From 2dd3b75819254ff7e22a10e67908e56ec961e148 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Wed, 27 Nov 2024 02:17:11 +0100 Subject: Made var const --- FICS/legal.c | 2 +- FICS/legal.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FICS/legal.c b/FICS/legal.c index ee1d01b..87b5685 100644 --- a/FICS/legal.c +++ b/FICS/legal.c @@ -24,7 +24,7 @@ #include "legal.h" -char legalNotice[] = +const char legalNotice[] = "fics - An internet chess server.\n" "Copyright (C) 1993 Richard V. Nash\n" "\n" diff --git a/FICS/legal.h b/FICS/legal.h index 5219938..a87b8a8 100644 --- a/FICS/legal.h +++ b/FICS/legal.h @@ -26,6 +26,6 @@ #ifndef _LEGAL_H #define _LEGAL_H -extern char legalNotice[]; +extern const char legalNotice[]; #endif /* _LEGAL_H */ -- cgit v1.2.3