aboutsummaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorMarvin Borner2023-04-17 12:37:15 +0200
committerMarvin Borner2023-04-17 12:37:15 +0200
commitc8505852fff816f8e319cb7492ff1fee55f33f23 (patch)
treefc7cb822f53605e0b5835aab8f217bddaa981554 /src/term.c
parentf8e807e657766342ae4931d77edce8f1a5d27b56 (diff)
Added logging and verbosity flag
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/term.c b/src/term.c
index 7ab1a79..50333c7 100644
--- a/src/term.c
+++ b/src/term.c
@@ -6,14 +6,13 @@
#include <string.h>
#include <term.h>
+#include <log.h>
struct term *new_term(term_type type)
{
struct term *term = malloc(sizeof(*term));
- if (!term) {
- fprintf(stderr, "Out of memory!\n");
- abort();
- }
+ if (!term)
+ fatal("Out of memory!\n");
term->type = type;
return term;
}