1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

ALIGN -> BIRD_ALIGN

This commit is contained in:
Ondrej Filip
2004-06-01 10:28:25 +00:00
parent 22122d4d4c
commit 7fdd338c36
3 changed files with 5 additions and 7 deletions

View File

@@ -90,7 +90,7 @@ linpool
void *
lp_alloc(linpool *m, unsigned size)
{
byte *a = (byte *) ALIGN((unsigned long) m->ptr, CPU_STRUCT_ALIGN);
byte *a = (byte *) BIRD_ALIGN((unsigned long) m->ptr, CPU_STRUCT_ALIGN);
byte *e = a + size;
if (e <= m->end)