summaryrefslogtreecommitdiff
path: root/libelf/elf_update.c
diff options
context:
space:
mode:
Diffstat (limited to 'libelf/elf_update.c')
-rw-r--r--libelf/elf_update.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libelf/elf_update.c b/libelf/elf_update.c
index 284ff8d..9ae5a09 100644
--- a/libelf/elf_update.c
+++ b/libelf/elf_update.c
@@ -151,7 +151,7 @@ _libelf_compute_section_extents(Elf *e, Elf_Scn *s, off_t *rc)
if ((uint64_t) d->d_off + d->d_size > scn_size)
scn_size = d->d_off + d->d_size;
} else {
- scn_size = roundup2(scn_size, d->d_align);
+ scn_size = ROUNDUP2(scn_size, d->d_align);
d->d_off = scn_size;
scn_size += d->d_size;
}