summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmt.c b/src/fmt.c
index abad56e37..009abd13b 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);