summaryrefslogtreecommitdiff
path: root/err.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-02-07 16:27:22 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-02-07 16:27:22 -0500
commit7a00bc9c71026edc39086f7b7f03e7297cd186c2 (patch)
treeec1d0a4611e2eae52a25ebcacf6b12cdcad6dca6 /err.c
parent67e9e8a5d840fd3042662c79460324b3629af821 (diff)
finished new ident system
Diffstat (limited to 'err.c')
-rw-r--r--err.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/err.c b/err.c
index e0aab89..a40499e 100644
--- a/err.c
+++ b/err.c
@@ -114,11 +114,11 @@ static void warn_print_header_(Location where) {
static void err_print_footer_(Location where, bool show_ctx_stack) {
ErrCtx *ctx = where.file->ctx;
- err_fprint(ctx, "\n");
+ err_fprint(ctx, "\n\t");
print_location_highlight(err_ctx_file(ctx), where);
if (ctx && show_ctx_stack) {
arr_foreach(ctx->instance_stack, Location, inst) {
- err_fprint(ctx, "While generating the instance of a function\n");
+ err_fprint(ctx, "While generating the instance of a function\n\t");
print_location_highlight(err_ctx_file(ctx), *inst);
}
}