diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-19 12:21:42 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-19 12:21:42 +0000 |
commit | 3266e3737ffff523ae6bbee2ec61b468497df401 (patch) | |
tree | 413253fa56e1f478534b3a57b3ba200f586df7bc | |
parent | ff65950f67a0b47d31d8a350478513f488ee600f (diff) |
- s_misc.c: constify weekdays[], months[]
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2302 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | src/s_misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s_misc.c b/src/s_misc.c index 1c59655..818d93d 100644 --- a/src/s_misc.c +++ b/src/s_misc.c @@ -37,14 +37,14 @@ #include "memory.h" -static const char *months[] = +static const char *const months[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November","December" }; -static const char *weekdays[] = +static const char *const weekdays[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" |