diff options
Diffstat (limited to 'WWW/Library/Implementation/HTGroup.c')
-rw-r--r-- | WWW/Library/Implementation/HTGroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTGroup.c b/WWW/Library/Implementation/HTGroup.c index 490699d3..b3a30861 100644 --- a/WWW/Library/Implementation/HTGroup.c +++ b/WWW/Library/Implementation/HTGroup.c @@ -78,7 +78,7 @@ PRIVATE void syntax_error ARGS3(FILE *, fp, int ch; while ((ch = getc(fp)) != EOF && ch != '\n') - if (cnt < 40) buffer[cnt++] = ch; + if (cnt < 40) buffer[cnt++] = (char) ch; buffer[cnt] = (char)0; CTRACE(tfp, "%s %d before: '%s'\nHTGroup.c: %s (got %s)\n", |