From 8d9ef8932941904c621e6762d5740f63564c527a Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 8 Feb 2026 19:16:36 +0000 Subject: [PATCH] Fix bug with queue --- src/base/queue/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/queue/queue.h b/src/base/queue/queue.h index 07e4a9d..6e84ef2 100644 --- a/src/base/queue/queue.h +++ b/src/base/queue/queue.h @@ -54,7 +54,7 @@ typedef GenericQueue Str8Queue; }()) #define wapp_queue_alloc(TYPE, ALLOCATOR_PTR, CAPACITY) ([&]() { \ wapp_persist GenericQueue queue = { \ - wapp_array_alloc_capacity(TYPE, ALLOCATOR_PTR, CAPACITY, ARRAY_INIT_FILLED) \ + wapp_array_alloc_capacity(TYPE, ALLOCATOR_PTR, CAPACITY, ARRAY_INIT_FILLED), \ 0, \ 0, \ 0, \