summaryrefslogtreecommitdiffstats
path: root/opt.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-07-29 22:44:53 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-07-29 22:53:27 -0400
commitf7b03c0695b313a0ddd527d4bbd6c50c010bd7e4 (patch)
tree667ae9a0b75cf6d1cf5503f9e9e9dd8d866a826a /opt.c
parent5590685c30b7af5441938938db68a66e42820507 (diff)
downloadbfs-f7b03c0695b313a0ddd527d4bbd6c50c010bd7e4.tar.xz
bftw: Rename bftw_typeflag to bftw_type, and make it not a bitmask
Diffstat (limited to 'opt.c')
-rw-r--r--opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opt.c b/opt.c
index 65520dd..458106f 100644
--- a/opt.c
+++ b/opt.c
@@ -226,9 +226,9 @@ struct opt_facts {
enum known_pred preds[PRED_TYPES];
/** Bitmask of possible file types. */
- enum bftw_typeflag types;
+ unsigned int types;
/** Bitmask of possible link target types. */
- enum bftw_typeflag xtypes;
+ unsigned int xtypes;
};
/** Initialize some data flow facts. */