Skip to content

Commit e053ee1

Browse files
cosmo0920edsiper
authored andcommitted
strptime: Fix style of parenthses
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 0bf33de commit e053ee1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flb_strptime.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,8 @@ again: switch (c = *fmt++) {
588588
return (NULL);
589589
break;
590590

591-
case 'Z': {
591+
case 'Z':
592+
{
592593
const flb_tz_abbr_info_t *tz_info;
593594
int found_in_known = 0;
594595
size_t abbr_len;
@@ -652,9 +653,8 @@ again: switch (c = *fmt++) {
652653
bp = ep;
653654
}
654655
}
655-
}
656656
continue;
657-
657+
}
658658
case 'z':
659659
/*
660660
* We recognize all ISO 8601 formats:

0 commit comments

Comments
 (0)