mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-09 19:30:29 +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:
|
||||
if (isdecdigit) {
|
||||
goto Continue;
|
||||
} else goto Break;
|
||||
} else {
|
||||
goto Break;
|
||||
}
|
||||
default:
|
||||
goto Break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue