Skip to content

Commit

Permalink
remove direct flag
Browse files Browse the repository at this point in the history
  • Loading branch information
zeriyoshi committed Sep 11, 2024
1 parent 91b474e commit 1dd22b3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ext/hook.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#endif

typedef struct _format_flags_t {
bool y, m, d, h, i, s, us, direct;
bool y, m, d, h, i, s, us;
} format_flags_t;

static inline void parse_format(char *format, format_flags_t *flags) {
Expand Down Expand Up @@ -86,13 +86,6 @@ static inline void parse_format(char *format, format_flags_t *flags) {
case 'u':
flags->us = true;
continue;
case 'e':
case 'O':
case 'p':
case 'P':
case 'T':
flags->direct = true;
continue;
case '!':
case '|':
case 'U':
Expand Down

0 comments on commit 1dd22b3

Please sign in to comment.