From: Daan De Meyer Date: Tue, 13 Jun 2023 13:53:15 +0000 (+0200) Subject: btrfs-util: Drop redundant parentheses X-Git-Tag: v254-rc1~219^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e089efd7a74cca496a17f8f20b54e50aa1f1d5c8;p=thirdparty%2Fsystemd.git btrfs-util: Drop redundant parentheses --- diff --git a/src/shared/btrfs-util.c b/src/shared/btrfs-util.c index 429e5afe117..f86645e4eed 100644 --- a/src/shared/btrfs-util.c +++ b/src/shared/btrfs-util.c @@ -78,7 +78,7 @@ int btrfs_is_subvol_at(int dir_fd, const char *path) { /* On btrfs subvolumes always have the inode 256 */ - if (fstatat(dir_fd, strempty(path), &st, (isempty(path) ? AT_EMPTY_PATH : 0)) < 0) + if (fstatat(dir_fd, strempty(path), &st, isempty(path) ? AT_EMPTY_PATH : 0) < 0) return -errno; if (!btrfs_might_be_subvol(&st))