correction of syntax error

This commit is contained in:
ceriel 1987-01-28 17:05:02 +00:00
parent fc2e88758f
commit f3a6d7c3ce

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