diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-11-09 16:26:02 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-11-09 16:26:02 -0500 |
commit | 0e80632397f581380441a4165247cd46f4bfcda0 (patch) | |
tree | 45fc3b8905fc13f4bae2a32a18b83a96a9538252 | |
parent | ffa9f8803ef2e0e9ffbfa8169dc6d7d338b14116 (diff) | |
download | bfs-0e80632397f581380441a4165247cd46f4bfcda0.tar.xz |
Use two newlines for all pre-eval warnings
-rw-r--r-- | eval.c | 2 | ||||
-rw-r--r-- | opt.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1464,7 +1464,7 @@ int bfs_eval(const struct bfs_ctx *ctx) { if (ctx->status) { args.bar = bfs_bar_show(); if (!args.bar) { - bfs_warning(ctx, "Couldn't show status bar: %m.\n"); + bfs_warning(ctx, "Couldn't show status bar: %m.\n\n"); } } @@ -1016,7 +1016,7 @@ int bfs_optimize(struct bfs_ctx *ctx) { ctx->expr = ignore_result(&state, ctx->expr); if (facts_are_impossible(&facts_when_impure)) { - bfs_warning(ctx, "This command won't do anything.\n"); + bfs_warning(ctx, "This command won't do anything.\n\n"); } const struct range *depth_when_impure = &facts_when_impure.ranges[DEPTH_RANGE]; |