pvPortMalloc: Fix regression when changing to new heap implementation

This commit is contained in:
Angus Gratton 2017-07-12 11:10:11 +08:00 committed by Angus Gratton
parent 7ae93f271c
commit d601bedb85

View file

@ -450,7 +450,7 @@ uint32_t xPortGetTickRateHz(void) {
void *pvPortMalloc( size_t xWantedSize )
{
return heap_caps_malloc( MALLOC_CAP_8BIT, xWantedSize);
return heap_caps_malloc(xWantedSize, MALLOC_CAP_8BIT);
}
void vPortFree( void *pv )