From e7041238e4d5ee3bb7e10680e0d786e22c279b30 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2018 13:42:56 +0200 Subject: Add missing macro argument parenthesis --- lv2/atom/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lv2') diff --git a/lv2/atom/util.h b/lv2/atom/util.h index cb3dbc8..b507180 100644 --- a/lv2/atom/util.h +++ b/lv2/atom/util.h @@ -226,7 +226,7 @@ lv2_atom_tuple_next(const LV2_Atom* i) /** Like LV2_ATOM_TUPLE_FOREACH but for a headerless tuple body. */ #define LV2_ATOM_TUPLE_BODY_FOREACH(body, size, iter) \ - for (LV2_Atom* (iter) = (LV2_Atom*)body; \ + for (LV2_Atom* (iter) = (LV2_Atom*)(body); \ !lv2_atom_tuple_is_end(body, size, (iter)); \ (iter) = lv2_atom_tuple_next(iter)) -- cgit v1.2.1