From c335ef637fb37928c33fc247362b0666604cecde Mon Sep 17 00:00:00 2001 From: dario Date: Sat, 20 Jan 2024 14:52:29 +0100 Subject: [PATCH] fixed duplicate assert --- src/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread.cpp b/src/thread.cpp index a6a2fb4..a392422 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -26,7 +26,7 @@ namespace sta running_{false} { STA_ASSERT(stack_size >= 0); - STA_ASSERT(stack_size >= 0); + STA_ASSERT(cb_size >= 0); } void TacosThread::entry_point(void* arg)