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:
Matheus Afonso Martins Moreira 2023-11-02 20:05:41 -03:00
parent c38aec9949
commit ded97bf5af

View file

@ -451,7 +451,9 @@ int __vcscanf(int callback(void *), //
case EXPONENT:
if (isdecdigit) {
goto Continue;
} else goto Break;
} else {
goto Break;
}
default:
goto Break;
}