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:
parent
ce913e0ec4
commit
96d651a22b
@ -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; \
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user