diff --git a/libc/stdio/vcscanf.c b/libc/stdio/vcscanf.c index 7032ceb51..62a2545b3 100644 --- a/libc/stdio/vcscanf.c +++ b/libc/stdio/vcscanf.c @@ -438,7 +438,9 @@ int __vcscanf(int callback(void *), // } else if (isdecexp || (hexadecimal && ishexp)) { state = SIGN; goto Continue; - } else goto Break; + } else { + goto Break; + } case SIGN: if (issign) { state = EXPONENT;