diff options
Diffstat (limited to 'libelf/elf_strptr.c')
-rw-r--r-- | libelf/elf_strptr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libelf/elf_strptr.c b/libelf/elf_strptr.c index e2ac7c6..586372f 100644 --- a/libelf/elf_strptr.c +++ b/libelf/elf_strptr.c @@ -100,7 +100,7 @@ elf_strptr(Elf *e, size_t scndx, size_t offset) LIBELF_SET_ERROR(DATA, 0); return (NULL); } - count = roundup2(count, alignment); + count = ROUNDUP2(count, alignment); } if (offset < count) { |