correction of syntax error
authorceriel <none@none>
Wed, 28 Jan 1987 17:05:02 +0000 (17:05 +0000)
committerceriel <none@none>
Wed, 28 Jan 1987 17:05:02 +0000 (17:05 +0000)
lang/cem/libcc/gen/memcmp.c

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