From 6604897c7894ac3c76050f02b90e54084d23683a Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Fri, 10 Dec 1999 13:27:02 +0000 Subject: [PATCH] fix the same typo as in uniq --- usr.bin/comm/comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c index 0a55c4695b89..c1a23a0b58ed 100644 --- a/usr.bin/comm/comm.c +++ b/usr.bin/comm/comm.c @@ -215,5 +215,5 @@ stricoll(s1, s2) for (p = line2; *s2; s2++) *p++ = tolower((unsigned char)*s2); *p = '\0'; - return strcoll(s1, s2); + return strcoll(line1, line2); }