Added mssing semicolon

This commit is contained in:
CarlWachter 2023-09-23 11:20:53 +02:00
parent 1bd528c5cb
commit 6f64a06164

View File

@ -26,7 +26,7 @@ namespace sta
template <typename T>
void * RtosMemPool<T>::alloc(uint32_t timeout /* = osWaitForever */)
{
void * addr = osMemoryPoolAlloc(handle_, timeout)
void * addr = osMemoryPoolAlloc(handle_, timeout);
STA_ASSERT_MSG(addr != nullptr, "Failed to Alloc RtosMemPool Block");
return addr;
}