Compare commits

..

2 Commits

Author SHA1 Message Date
c91f1b9e9b Use correct default arena init function 2024-08-23 22:31:14 +01:00
3ceafe5899 Update wapp submodule 2024-08-23 22:30:32 +01:00
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 8b6fb23bac98ff4b67219f4c020369cc0b0dce7d Subproject commit 775f0864a894c1edac551cd338038b9e435dfcf1

View File

@ -21,7 +21,7 @@ enum {
int main(void) { int main(void) {
Arena *arena = NULL; Arena *arena = NULL;
if (!wapp_mem_arena_init_default(&arena, GB(10))) { if (!wapp_mem_arena_init(&arena, GB(10))) {
return TINY_EXIT_ARENA_INIT_FAILED; return TINY_EXIT_ARENA_INIT_FAILED;
} }