From ed297fee6f35d61a79fc22fd342e2b634c2c7a5f Mon Sep 17 00:00:00 2001 From: markm Date: Sun, 28 Apr 2002 12:25:03 +0000 Subject: Easy warns fixes; constify. --- usr.bin/ncal/ncal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/ncal') 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, -- cgit v1.1