correction of syntax error
This commit is contained in:
parent
fc2e88758f
commit
f3a6d7c3ce
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ register char *s1, *s2;
|
|||
{
|
||||
/* Compare 2 strings. */
|
||||
|
||||
while (n-- > 0)
|
||||
while (n-- > 0) {
|
||||
if (*s1 != *s2) {
|
||||
return(*s1 - *s2);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue