diff options
Diffstat (limited to 'include/lv2')
| -rw-r--r-- | include/lv2/atom/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lv2/atom/util.h b/include/lv2/atom/util.h index 9524210..a7e001b 100644 --- a/include/lv2/atom/util.h +++ b/include/lv2/atom/util.h @@ -38,7 +38,7 @@ extern "C" { static inline uint32_t lv2_atom_pad_size(uint32_t size) { - return (size + 7U) & ~(7U); + return (size + 7U) & ~7U; } /** Return the total size of `atom`, including the header. */ |