fixed duplicate assert

This commit is contained in:
dario 2024-01-20 14:52:29 +01:00
parent 7f875a8f46
commit c335ef637f

View File

@ -26,7 +26,7 @@ namespace sta
running_{false} running_{false}
{ {
STA_ASSERT(stack_size >= 0); STA_ASSERT(stack_size >= 0);
STA_ASSERT(stack_size >= 0); STA_ASSERT(cb_size >= 0);
} }
void TacosThread::entry_point(void* arg) void TacosThread::entry_point(void* arg)