From 19ed06ea234c50b8e4160dcb3b6cd8fa9cc159df Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 12 Sep 2024 11:03:59 -0400 Subject: opt: Add missing newline to debug statement Fixes: 9b8cf46 ("opt: Warn about all ignored tests") --- src/opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3