diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-09 12:58:08 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-09 12:58:08 -0500 |
commit | 7f303bec64c7a300f0f38e9938a8327cac9591e0 (patch) | |
tree | 34c229b9285fe711d6b294629e175c7155ddb227 /src | |
parent | e477e12ade9544c31779f007faee169aae22e145 (diff) | |
download | bfs-7f303bec64c7a300f0f38e9938a8327cac9591e0.tar.xz |
parse: Mark another variable with BFS_UNINIT()
Diffstat (limited to 'src')
-rw-r--r-- | src/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c index 90e7e3b..ad32714 100644 --- a/src/parse.c +++ b/src/parse.c @@ -2119,7 +2119,7 @@ static int parse_mode(const struct parser_state *state, const char *mode, struct MODE_PLUS, MODE_MINUS, MODE_EQUALS, - } op; + } BFS_UNINIT(op, MODE_EQUALS); mode_t BFS_UNINIT(who, 0); mode_t BFS_UNINIT(file_change, 0); |