Merge pull request #5265 from radarhere/format

Added braces
This commit is contained in:
Hugo van Kemenade 2021-02-13 11:51:57 +02:00 committed by GitHub
commit 20329f31bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,7 +169,8 @@ ImagingGifEncode(Imaging im, ImagingCodecState state, UINT8 *buf, int bytes) {
ptr = buf;
for (;;) switch (state->state) {
for (;;) {
switch (state->state) {
case INIT:
case ENCODE:
@ -319,4 +320,5 @@ ImagingGifEncode(Imaging im, ImagingCodecState state, UINT8 *buf, int bytes) {
state->state = ENCODE;
break;
}
}
}