X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fstruct%2Fheap.c;h=2375c1f140ebcd2267090f4285edd91c295fdf56;hb=c9548deb3275b044cd5f4fbc941598a7a442b836;hp=b4380a4da499a53e4c6cc581e755667df8867279;hpb=e5174304054e26cd8f3cd1f9980871c20c07fc46;p=bertos.git diff --git a/bertos/struct/heap.c b/bertos/struct/heap.c index b4380a4d..2375c1f1 100644 --- a/bertos/struct/heap.c +++ b/bertos/struct/heap.c @@ -73,7 +73,7 @@ void *heap_allocmem(struct Heap* h, size_t size) MemChunk *chunk, *prev; /* Round size up to the allocation granularity */ - size = ROUND2(size, sizeof(MemChunk)); + size = ROUND_UP2(size, sizeof(MemChunk)); /* Handle allocations of 0 bytes */ if (!size) @@ -123,7 +123,7 @@ void heap_freemem(struct Heap* h, void *mem, size_t size) #endif /* Round size up to the allocation granularity */ - size = ROUND2(size, sizeof(MemChunk)); + size = ROUND_UP2(size, sizeof(MemChunk)); /* Handle allocations of 0 bytes */ if (!size)