mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-10 20:00:27 +00:00
vcscanf: add curly braces around another else
Makes the goto statement easier to read. Also consistent with the rest of the codebase.
This commit is contained in:
parent
c38aec9949
commit
ded97bf5af
1 changed files with 3 additions and 1 deletions
|
@ -451,7 +451,9 @@ int __vcscanf(int callback(void *), //
|
||||||
case EXPONENT:
|
case EXPONENT:
|
||||||
if (isdecdigit) {
|
if (isdecdigit) {
|
||||||
goto Continue;
|
goto Continue;
|
||||||
} else goto Break;
|
} else {
|
||||||
|
goto Break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
goto Break;
|
goto Break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue