1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +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(b)* _b = &(b); \
free(*_a); \
(*_a) = (*_b); \
(*_b) = NULL; \
*_a = *_b; \
*_b = NULL; \
0; \
})