From: Lennart Poettering Date: Sun, 16 Nov 2025 07:11:07 +0000 (+0100) Subject: iovec-util: drop redundant () X-Git-Tag: v259-rc1~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1240ba1807372e0353fb8cf204681971377d8927;p=thirdparty%2Fsystemd.git iovec-util: drop redundant () --- diff --git a/src/fundamental/iovec-util-fundamental.h b/src/fundamental/iovec-util-fundamental.h index 024dd9bf78c..ef193a0dec3 100644 --- a/src/fundamental/iovec-util-fundamental.h +++ b/src/fundamental/iovec-util-fundamental.h @@ -38,5 +38,5 @@ static inline bool iovec_is_set(const struct iovec *iovec) { static inline bool iovec_is_valid(const struct iovec *iovec) { /* Checks if the iovec is either NULL, empty or points to a valid bit of memory */ - return !iovec || (iovec->iov_base || iovec->iov_len == 0); + return !iovec || iovec->iov_base || iovec->iov_len == 0; }