summaryrefslogtreecommitdiffstats
path: root/usr.bin/ncal
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ncal')
-rw-r--r--usr.bin/ncal/ncal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ncal/ncal.c b/usr.bin/ncal/ncal.c
index 35d883a..e10f45a 100644
--- a/usr.bin/ncal/ncal.c
+++ b/usr.bin/ncal/ncal.c
@@ -64,8 +64,8 @@ struct weekdays {
/* The switches from Julian to Gregorian in some countries */
static struct djswitch {
- char *cc; /* Country code according to ISO 3166 */
- char *nm; /* Name of country */
+ const char *cc; /* Country code according to ISO 3166 */
+ const char *nm; /* Name of country */
date dt; /* Last day of Julian calendar */
} switches[] = {
{"AL", "Albania", {1912, 11, 30}},
@@ -193,7 +193,7 @@ main(int argc, char *argv[])
int flag_orthodox = 0; /* use wants Orthodox easter */
int flag_easter = 0; /* use wants easter date */
char *cp; /* character pointer */
- char *locale; /* locale to get country code */
+ const char *locale; /* locale to get country code */
/*
* Use locale to determine the country code,
OpenPOWER on IntegriCloud