Skip to content

Commit db99b87

Browse files
committed
strptime: Fix style of parenthses
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 8beddce commit db99b87

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
@@ -581,7 +581,8 @@ again: switch (c = *fmt++) {
581581
return (NULL);
582582
break;
583583

584-
case 'Z': {
584+
case 'Z':
585+
{
585586
const flb_tz_abbr_info_t *tz_info;
586587
int found_in_known = 0;
587588
size_t abbr_len;
@@ -645,9 +646,8 @@ again: switch (c = *fmt++) {
645646
bp = ep;
646647
}
647648
}
648-
}
649649
continue;
650-
650+
}
651651
case 'z':
652652
/*
653653
* We recognize all ISO 8601 formats:

0 commit comments

Comments
 (0)