fix the same typo as in uniq

This commit is contained in:
Andrey A. Chernov 1999-12-10 13:27:02 +00:00
parent 579f26f4a8
commit 6604897c78
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54403

View File

@ -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);
}