aboutsummaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index e68611e..3074bfc 100644
--- a/src/term.c
+++ b/src/term.c
@@ -44,7 +44,8 @@ void term_diff(Term *a, Term *b)
print_bruijn(a);
fprintf(stderr, "\nTerm b: ");
print_bruijn(b);
- fatal("\ntype mismatch %d %d\n", a->type, b->type);
+ fprintf(stderr, "\n");
+ fatal("type mismatch %d %d\n", a->type, b->type);
}
switch (a->type) {