From 48b1e18aaee487b7e3f5bf881c2848a7f4ce79b4 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 21 Nov 2022 10:53:23 +0100 Subject: [PATCH] repart: Remove redundant parentheses in partition_populate_directory() --- src/partition/repart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition/repart.c b/src/partition/repart.c index 8249a82043..9a6bbdfb32 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; } -- 2.25.1