From d71367f33e4099e3b8ce7649f131f8df69722286 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 26 Jul 1998 20:42:02 +0000 Subject: [PATCH] (check_punctuation): Add cast to placate irix4's cc. Reported by Kaveh Ghazi. --- src/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3