From c1ee6464dfaa568c6d052970efb2e115468c97f1 Mon Sep 17 00:00:00 2001 From: dario Date: Wed, 7 Feb 2024 18:49:49 +0100 Subject: [PATCH] Small bugfix for rtos queue --- include/sta/rtos/queue.tpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sta/rtos/queue.tpp b/include/sta/rtos/queue.tpp index a92767c..3814188 100644 --- a/include/sta/rtos/queue.tpp +++ b/include/sta/rtos/queue.tpp @@ -19,7 +19,7 @@ namespace sta RtosQueue::RtosQueue(osMessageQueueId_t handle) : handle_{handle} { - STA_ASSERT(handle != nullptr); + STA_ASSERT(handle != NULL); } template