diff --git a/src/platform/nxp/k32w/k32w0/PlatformManagerImpl.cpp b/src/platform/nxp/k32w/k32w0/PlatformManagerImpl.cpp index 6546dd842f2a7c..cfcc6ad007e264 100644 --- a/src/platform/nxp/k32w/k32w0/PlatformManagerImpl.cpp +++ b/src/platform/nxp/k32w/k32w0/PlatformManagerImpl.cpp @@ -78,7 +78,7 @@ CHIP_ERROR PlatformManagerImpl::_GetCurrentHeapFree(uint64_t & currentHeapFree) { size_t freeHeapSize; - freeHeapSize = xPortGetFreeHeapSize(); + freeHeapSize = xPortGetFreeHeapSize(); currentHeapFree = static_cast(freeHeapSize); return CHIP_NO_ERROR; } @@ -99,7 +99,7 @@ CHIP_ERROR PlatformManagerImpl::_GetCurrentHeapHighWatermark(uint64_t & currentH { size_t highWatermarkHeapSize; - highWatermarkHeapSize = HEAP_SIZE - xPortGetMinimumEverFreeHeapSize(); + highWatermarkHeapSize = HEAP_SIZE - xPortGetMinimumEverFreeHeapSize(); currentHeapHighWatermark = static_cast(highWatermarkHeapSize); return CHIP_NO_ERROR; }