correction of syntax error

This commit is contained in:
ceriel 1987-01-28 17:05:02 +00:00
parent 2ff11c4166
commit db6bfc5f8a

View File

@ -4,7 +4,7 @@ register char *s1, *s2;
{
/* Compare 2 strings. */
while (n-- > 0)
while (n-- > 0) {
if (*s1 != *s2) {
return(*s1 - *s2);
}