fix fatal typo

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

View File

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