aboutsummaryrefslogtreecommitdiffstats
path: root/include/lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2026-04-07 20:11:31 -0400
committerDavid Robillard <d@drobilla.net>2026-04-07 20:12:08 -0400
commit3c57dae600a5ad8d05acd53ee3490f7d91cb7be6 (patch)
tree86484ed3f21139bac6991397d0c1746caaa3b9d1 /include/lv2
parentc19da82eb31164004e92648c40a52ec7dc428130 (diff)
downloadlv2-main.tar.xz
Address new warnings in clang-tidy 22HEADmain
Diffstat (limited to 'include/lv2')
-rw-r--r--include/lv2/atom/util.h2
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. */