From a488ba66f368d5accb58ed2da13772e90104754f Mon Sep 17 00:00:00 2001 From: erki Date: Sat, 10 Dec 2022 17:27:12 +0200 Subject: [PATCH] Threads: fix remaining zeroInitialized reference --- Threads/Src/threads_primitivethread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Threads/Src/threads_primitivethread.cpp b/Threads/Src/threads_primitivethread.cpp index a4d5342..76abfe0 100644 --- a/Threads/Src/threads_primitivethread.cpp +++ b/Threads/Src/threads_primitivethread.cpp @@ -101,7 +101,7 @@ PrimitiveThread::PrimitiveThread(osThreadFunc_t function, void* runner_data, con PrimitiveThread::PrimitiveThread(TaskHandle_t threadHandle) - : thread_id(static_cast(threadHandle)), attributes(Peripherals::zeroInitialized()) + : thread_id(static_cast(threadHandle)), attributes(Utility::zeroInitialized()) { assert(thread_id != nullptr); }