mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-09 19:30:29 +00:00
vcscanf: add curly braces around else clause
Makes the goto statement easier to read. Also consistent with the rest of the codebase.
This commit is contained in:
parent
bb0d4c2c15
commit
cc79f6233d
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue