diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-09-12 21:32:26 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-10-09 12:19:28 -0400 |
commit | 6d537cb95878bcfa4803af8a42a55e74b463e5c8 (patch) | |
tree | 34a7c53ce2fc0afff6cdf1de10e3b7a01fbca07a /eval.c | |
parent | 5bf787a8a80152fbf0993fbdc345e25cc41afa7f (diff) | |
download | bfs-6d537cb95878bcfa4803af8a42a55e74b463e5c8.tar.xz |
printf: Take a CFILE, not a FILE
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -760,7 +760,7 @@ bool eval_fprint0(const struct expr *expr, struct eval_state *state) { * -f?printf action. */ bool eval_fprintf(const struct expr *expr, struct eval_state *state) { - if (bfs_printf(expr->cfile->file, expr->printf, state->ftwbuf) != 0) { + if (bfs_printf(expr->cfile, expr->printf, state->ftwbuf) != 0) { eval_report_error(state); } |