diff options
author | ache <ache@FreeBSD.org> | 1999-12-10 13:27:02 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1999-12-10 13:27:02 +0000 |
commit | 5ee94caf281785edd4815099585beeaf17ae3720 (patch) | |
tree | edd3f1c031c1a7abd6b62e33f40d678018b8e93c /usr.bin/comm | |
parent | 91440b61a33c35f8971e9d60dacc8b18257efb4d (diff) | |
download | FreeBSD-src-5ee94caf281785edd4815099585beeaf17ae3720.zip FreeBSD-src-5ee94caf281785edd4815099585beeaf17ae3720.tar.gz |
fix the same typo as in uniq
Diffstat (limited to 'usr.bin/comm')
-rw-r--r-- | usr.bin/comm/comm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c index 0a55c46..c1a23a0 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); } |