(svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style
This fixes also FS#1450
This commit is contained in:
@@ -97,7 +97,7 @@ static void *pool_alloc(SettingsMemoryPool **pool, uint size)
|
||||
uint pos;
|
||||
SettingsMemoryPool *p = *pool;
|
||||
|
||||
size = ALIGN(size, sizeof(void*));
|
||||
size = Align(size, sizeof(void*));
|
||||
|
||||
/* first check if there's memory in the next pool */
|
||||
if (p->next && p->next->pos + size <= p->next->size) {
|
||||
|
Reference in New Issue
Block a user