1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-12 09:17:44 +03:00

basic/alloc-util: remove unnecessary parens

Those symbols are not macros anymore, so we can drop parens.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2022-05-09 15:11:20 +02:00
parent ce913e0ec4
commit 96d651a22b

View File

@ -55,8 +55,8 @@ typedef void* (*mfree_func_t)(void *p);
typeof(a)* _a = &(a); \ typeof(a)* _a = &(a); \
typeof(b)* _b = &(b); \ typeof(b)* _b = &(b); \
free(*_a); \ free(*_a); \
(*_a) = (*_b); \ *_a = *_b; \
(*_b) = NULL; \ *_b = NULL; \
0; \ 0; \
}) })