summaryrefslogtreecommitdiffstats
path: root/src/parse.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-12-09 12:58:08 -0500
committerTavian Barnes <tavianator@tavianator.com>2022-12-09 12:58:08 -0500
commit7f303bec64c7a300f0f38e9938a8327cac9591e0 (patch)
tree34c229b9285fe711d6b294629e175c7155ddb227 /src/parse.c
parente477e12ade9544c31779f007faee169aae22e145 (diff)
downloadbfs-7f303bec64c7a300f0f38e9938a8327cac9591e0.tar.xz
parse: Mark another variable with BFS_UNINIT()
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c2
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);