aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_caret.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-19 17:55:02 -0500
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit0f9816d67bc67a396607291f845ca2a33c2285a7 (patch)
treeb31fd1b344305dc984a2109084fa183573a0ae43 /test/test_caret.c
parent258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d (diff)
downloadserd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.gz
serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.bz2
serd-0f9816d67bc67a396607291f845ca2a33c2285a7.zip
Use ZixAllocator directly
Diffstat (limited to 'test/test_caret.c')
-rw-r--r--test/test_caret.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_caret.c b/test/test_caret.c
index 379f80eb..98b1af67 100644
--- a/test/test_caret.c
+++ b/test/test_caret.c
@@ -6,9 +6,9 @@
#include "failing_allocator.h"
#include "serd/caret.h"
-#include "serd/memory.h"
#include "serd/node.h"
#include "serd/nodes.h"
+#include "zix/allocator.h"
#include <assert.h>
#include <stddef.h>
@@ -17,7 +17,7 @@
static int
test_caret(void)
{
- SerdAllocator* const allocator = serd_default_allocator();
+ ZixAllocator* const allocator = zix_default_allocator();
SerdNodes* const nodes = serd_nodes_new(allocator);
const SerdNode* const node = serd_nodes_get(nodes, serd_a_string("node"));