From: Mike Yuan Date: Thu, 5 Mar 2026 17:51:48 +0000 (+0100) Subject: boot/pe: remove unneeded parens X-Git-Tag: v260-rc3~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae4c3904afedc71ff7fa890206fc1396d67d2b67;p=thirdparty%2Fsystemd.git boot/pe: remove unneeded parens Follow-up for f8ed94ea9915d67af47954b48d6a9a4d755b6d8e --- diff --git a/src/boot/pe.c b/src/boot/pe.c index 255e8539de1..4c5dfa0d7af 100644 --- a/src/boot/pe.c +++ b/src/boot/pe.c @@ -396,7 +396,7 @@ static void pe_locate_sections( EFI_STATUS err = chid_match(hwids, hwids_section[0].memory_size, DEVICE_TYPE_DEVICETREE, &device); if (err != EFI_SUCCESS) { - log_full(err, (err == EFI_NOT_FOUND) ? LOG_DEBUG : LOG_ERR, + log_full(err, err == EFI_NOT_FOUND ? LOG_DEBUG : LOG_ERR, "HWID matching failed, no DT blob will be selected: %m"); hwids = NULL; }