summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-14 08:22:02 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-14 08:22:02 +0000
commita00c3d1b279c07fb85925e10f85cb5b2c879a330 (patch)
tree40861ccc5a76c2e5a561d73b91201a68f190a2be /help.c
parent5b4d5ad070734b938087490a0e0ff1db358777ab (diff)
Type cast nit from Gero Treuner.
Diffstat (limited to 'help.c')
-rw-r--r--help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/help.c b/help.c
index bc9c4dc9..eaedf7b0 100644
--- a/help.c
+++ b/help.c
@@ -131,7 +131,7 @@ static int print_macro (FILE *f, int maxchar, const char **macro)
{
--n;
fputc(c, f);
- c = *++*macro;
+ c = (unsigned char) *++*macro;
}
else
c = 0;