diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-09-12 11:03:59 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-09-12 11:03:59 -0400 |
commit | 19ed06ea234c50b8e4160dcb3b6cd8fa9cc159df (patch) | |
tree | a95d9e46dcf33e562218e36687618f8cc10074eb /src/opt.c | |
parent | 3a5bd54175b2b18f347fc553e840c05a95427801 (diff) | |
download | bfs-19ed06ea234c50b8e4160dcb3b6cd8fa9cc159df.tar.xz |
opt: Add missing newline to debug statement
Fixes: 9b8cf46 ("opt: Warn about all ignored tests")
Diffstat (limited to 'src/opt.c')
-rw-r--r-- | src/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1819,7 +1819,7 @@ static struct bfs_expr *opt_ignore(struct bfs_opt *opt, struct bfs_expr *expr, b if (delete) { opt_delete(opt, "%pe [ignored result]\n", expr); } else { - opt_debug(opt, "ignored result"); + opt_debug(opt, "ignored result\n"); } if (expr->kind != BFS_TEST) { |