From 85471efb4c740bb775c9ebdb10f775620c979598 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sun, 22 Sep 2024 16:02:42 -0400 Subject: mld done --- masm/strtab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'masm/strtab.c') diff --git a/masm/strtab.c b/masm/strtab.c index 57d3d0e..404ea73 100644 --- a/masm/strtab.c +++ b/masm/strtab.c @@ -41,7 +41,7 @@ int strtab_init(struct str_table *strtab) strtab->size = 1; strtab->ptr = malloc(1); if (strtab->ptr == NULL) { - ERROR("cannot alloc"); + PERROR("cannot alloc"); return M_ERROR; } *strtab->ptr = '\0'; -- cgit v1.2.3-freya