1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-09 13:57:42 +03:00

socket-util: add one missing paren

Follow-up for b6256af75e0609e451198ed90c293efd50827ab3.
This commit is contained in:
Yu Watanabe 2023-04-13 15:20:49 +09:00
parent 924937cbc0
commit 4db752e4aa

View File

@ -183,7 +183,7 @@ int flush_accept(int fd);
* riscv32. */
#define CMSG_TYPED_DATA(cmsg, type) \
({ \
struct cmsghdr *_cmsg = cmsg; \
struct cmsghdr *_cmsg = (cmsg); \
assert_cc(__alignof__(type) <= __alignof__(struct cmsghdr)); \
_cmsg ? CAST_ALIGN_PTR(type, CMSG_DATA(_cmsg)) : (type*) NULL; \
})