From: Jim Meyering Date: Sun, 26 Jul 1998 20:42:02 +0000 (+0000) Subject: (check_punctuation): Add cast to placate irix4's cc. Reported by Kaveh Ghazi. X-Git-Tag: FILEUTILS-3_16t~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d71367f33e4099e3b8ce7649f131f8df69722286;p=thirdparty%2Fcoreutils.git (check_punctuation): Add cast to placate irix4's cc. Reported by Kaveh Ghazi. --- diff --git a/src/fmt.c b/src/fmt.c index abad56e37f..009abd13b3 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -708,7 +708,7 @@ check_punctuation (register WORD *w) { const unsigned char *start, *finish; - start = w->text; + start = (unsigned char *) w->text; finish = start + (w->length - 1); w->paren = isopen (*start); w->punct = ISPUNCT (*finish);