summaryrefslogtreecommitdiffstats
path: root/usr.bin/uniq
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1999-12-10 13:06:53 +0000
committerache <ache@FreeBSD.org>1999-12-10 13:06:53 +0000
commit91440b61a33c35f8971e9d60dacc8b18257efb4d (patch)
tree3b365212951bbb60bf3161f2e080ae823ea4a781 /usr.bin/uniq
parentbc1cf0df286ac0f807b35125ec05939b4da85512 (diff)
downloadFreeBSD-src-91440b61a33c35f8971e9d60dacc8b18257efb4d.zip
FreeBSD-src-91440b61a33c35f8971e9d60dacc8b18257efb4d.tar.gz
fix fatal typo
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r--usr.bin/uniq/uniq.c2
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);
}
OpenPOWER on IntegriCloud