From: Daan De Meyer Date: Mon, 21 Nov 2022 09:53:23 +0000 (+0100) Subject: repart: Remove redundant parentheses in partition_populate_directory() X-Git-Tag: v253-rc1~485^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48b1e18aaee487b7e3f5bf881c2848a7f4ce79b4;p=thirdparty%2Fsystemd.git repart: Remove redundant parentheses in partition_populate_directory() --- diff --git a/src/partition/repart.c b/src/partition/repart.c index 8249a82043d..9a6bbdfb32f 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -3786,7 +3786,7 @@ static int partition_populate_directory(Partition *p, const Set *denylist, char assert(ret); - if ((strv_isempty(p->copy_files) && strv_isempty(p->make_directories))) { + if (strv_isempty(p->copy_files) && strv_isempty(p->make_directories)) { *ret = NULL; return 0; }