From: Lennart Poettering Date: Tue, 30 Jun 2026 19:46:57 +0000 (+0200) Subject: sysupdate: drop redundant () X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea21c6d75ffbd5a41d7d9b6cfba3bf25d753a579;p=thirdparty%2Fsystemd.git sysupdate: drop redundant () Just a tiny simplification --- diff --git a/src/sysupdate/sysupdate.c b/src/sysupdate/sysupdate.c index e5af39849c5..87c1cc6d429 100644 --- a/src/sysupdate/sysupdate.c +++ b/src/sysupdate/sysupdate.c @@ -2155,11 +2155,12 @@ static int context_list_components(Context *context, char ***ret_component_names /* Does the system have at least one transfer file in /etc/sysupdate.d, which can be considered a * TARGET_HOST? See target_get_argument() in sysupdated.c */ if (ret_has_default_component) - *ret_has_default_component = (!context->definitions && - !context->component && - !context->root && - !context->image && - context->n_transfers > 0); + *ret_has_default_component = + !context->definitions && + !context->component && + !context->root && + !context->image && + context->n_transfers > 0; return 0; }