diff options
| author | David Robillard <d@drobilla.net> | 2026-04-07 20:11:31 -0400 |
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2026-04-07 20:12:08 -0400 |
| commit | 3c57dae600a5ad8d05acd53ee3490f7d91cb7be6 (patch) | |
| tree | 86484ed3f21139bac6991397d0c1746caaa3b9d1 /include | |
| parent | c19da82eb31164004e92648c40a52ec7dc428130 (diff) | |
| download | lv2-3c57dae600a5ad8d05acd53ee3490f7d91cb7be6.tar.xz | |
Diffstat (limited to 'include')
| -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. */ |