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

View File

@@ -21,7 +21,7 @@ enum {
int main(void) {
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;
}