diff options
Diffstat (limited to 'debuggerd/elf_utils.cpp')
-rw-r--r-- | debuggerd/elf_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debuggerd/elf_utils.cpp b/debuggerd/elf_utils.cpp index 9959f2e1f..3d99cab31 100644 --- a/debuggerd/elf_utils.cpp +++ b/debuggerd/elf_utils.cpp @@ -29,7 +29,7 @@ #include "elf_utils.h" -#define NOTE_ALIGN(size) ((size + 3) & ~3) +#define NOTE_ALIGN(size) (((size) + 3) & ~3) template <typename HdrType, typename PhdrType, typename NhdrType> static bool get_build_id( |