From 8a112f4e6206e0a7a55086a0e311231458535add Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Thu, 26 Oct 2000 21:48:49 +0000 Subject: unsigned chars to isalpha 2000-10-26 Michael Meeks * pcs/cal-factory.c (str_tolower): unsigned chars to isalpha * cal-util/calobj.c (weekdaylist, weekdaynum): ditto. svn path=/trunk/; revision=6217 --- calendar/pcs/cal-factory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'calendar/pcs') diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c index a89f2fe9f4..a67f8b777f 100644 --- a/calendar/pcs/cal-factory.c +++ b/calendar/pcs/cal-factory.c @@ -785,7 +785,7 @@ static char * str_tolower (const char *s) { char *str; - char *p; + unsigned char *p; str = g_strdup (s); for (p = str; *p; p++) -- cgit