diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-04-08 07:47:37 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-04-08 07:47:37 -0600 |
commit | 5b343f3e2515eb1077792564735f7e7c9e4c65e7 (patch) | |
tree | 11579021c4e5eeb6f35e1c02206abd070cf2cb9b /eval.c | |
parent | 998ba6f6d119608b0844c0ca735044746ea1fd0f (diff) | |
download | bfs-5b343f3e2515eb1077792564735f7e7c9e4c65e7.tar.xz |
Move bftw_typeflag converters to util.c
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -961,7 +961,7 @@ bool eval_xtype(const struct expr *expr, struct eval_state *state) { } } - return bftw_mode_to_typeflag(sb.st_mode) & expr->idata; + return mode_to_typeflag(sb.st_mode) & expr->idata; } #if _POSIX_MONOTONIC_CLOCK > 0 |