aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-16 04:43:49 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-10-16 04:43:49 +0200
commit327f33ef24cfca7c5c4bb8c00f82a19514dc0346 (patch)
treed2551239a6fc83805b609245f718c151b46f211a /lib
parent4982a5779b16c7eddb9c5b409d96a46bbddc6627 (diff)
Fix include name
Diffstat (limited to 'lib')
-rw-r--r--lib/alloc/arena_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/alloc/arena_alloc.c b/lib/alloc/arena_alloc.c
index c25c132..c32381c 100644
--- a/lib/alloc/arena_alloc.c
+++ b/lib/alloc/arena_alloc.c
@@ -12,7 +12,7 @@
#include "_attrs.h"
#include "alloc.h"
-#include "error.h"
+#include "errors.h"
#include "macros.h"
#define PAD(len, align) (((len) + (align) - 1) & ~((align) - 1))