diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-07-29 22:44:53 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-07-29 22:53:27 -0400 |
commit | f7b03c0695b313a0ddd527d4bbd6c50c010bd7e4 (patch) | |
tree | 667ae9a0b75cf6d1cf5503f9e9e9dd8d866a826a /opt.c | |
parent | 5590685c30b7af5441938938db68a66e42820507 (diff) | |
download | bfs-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |