summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-09-12 11:03:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-09-12 11:03:59 -0400
commit19ed06ea234c50b8e4160dcb3b6cd8fa9cc159df (patch)
treea95d9e46dcf33e562218e36687618f8cc10074eb
parent3a5bd54175b2b18f347fc553e840c05a95427801 (diff)
downloadbfs-19ed06ea234c50b8e4160dcb3b6cd8fa9cc159df.tar.xz
opt: Add missing newline to debug statement
Fixes: 9b8cf46 ("opt: Warn about all ignored tests")
-rw-r--r--src/opt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opt.c b/src/opt.c
index 290cf77..86ce694 100644
--- a/src/opt.c
+++ b/src/opt.c
@@ -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) {