diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-11-06 09:25:51 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-11-06 09:25:51 +0000 |
| commit | baae2b6f3c855efde46d9325e9e944c6f6dd76cf (patch) | |
| tree | 163b9fb57d232d7e75539a3333e2fd4fd3029606 /gnu/usr.bin/man/lib | |
| parent | 5a0156c1fcebd7ad9b1856941271c1469224c432 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/man/lib')
| -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++; } } |
