diff options
author | ache <ache@FreeBSD.org> | 1999-12-10 13:06:53 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1999-12-10 13:06:53 +0000 |
commit | 91440b61a33c35f8971e9d60dacc8b18257efb4d (patch) | |
tree | 3b365212951bbb60bf3161f2e080ae823ea4a781 /usr.bin | |
parent | bc1cf0df286ac0f807b35125ec05939b4da85512 (diff) | |
download | FreeBSD-src-91440b61a33c35f8971e9d60dacc8b18257efb4d.zip FreeBSD-src-91440b61a33c35f8971e9d60dacc8b18257efb4d.tar.gz |
fix fatal typo
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/uniq/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c index 9451dfe..07e25a0 100644 --- a/usr.bin/uniq/uniq.c +++ b/usr.bin/uniq/uniq.c @@ -275,5 +275,5 @@ stricoll(s1, s2) for (p = line2; *s2; s2++) *p++ = tolower((unsigned char)*s2); *p = '\0'; - return strcoll(s1, s2); + return strcoll(line1, line2); } |