Skip to content

Commit

Permalink
opt: Add missing newline to debug statement
Browse files Browse the repository at this point in the history
Fixes: 9b8cf46 ("opt: Warn about all ignored tests")
  • Loading branch information
tavianator committed Sep 12, 2024
1 parent 3a5bd54 commit 19ed06e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/opt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 19ed06e

Please sign in to comment.