diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 1996-11-05 23:35:16 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 1996-11-05 23:35:16 +0000 |
| commit | 5402df3cfad58281f70afff4dbdcf7616089aa6e (patch) | |
| tree | 66c93929452c7095e5e81ea452c26c9fcf7725e8 /gnu/usr.bin/man/lib/util.c | |
| parent | 00f10981946be70ba6712bf64f68faa3737bcdc0 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/man/lib/util.c')
| -rw-r--r-- | gnu/usr.bin/man/lib/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/man/lib/util.c b/gnu/usr.bin/man/lib/util.c index 14a6cb912d6f..6db023b7368b 100644 --- a/gnu/usr.bin/man/lib/util.c +++ b/gnu/usr.bin/man/lib/util.c @@ -59,7 +59,8 @@ downcase (s) while ((c = *s) != '\0') { if (isalpha (c)) - *s++ = tolower (c); + *s = tolower (c); + s++; } } |
