Update to new macro name.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 27 Aug 2008 17:17:23 +0000 (17:17 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 27 Aug 2008 17:17:23 +0000 (17:17 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1738 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/struct/heap.c

index b4380a4da499a53e4c6cc581e755667df8867279..2375c1f140ebcd2267090f4285edd91c295fdf56 100644 (file)
@@ -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)