From: Yu Watanabe Date: Thu, 19 Sep 2024 00:14:21 +0000 (+0900) Subject: efi: fix typo X-Git-Tag: v257-rc1~402 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c2648f6e230c4da5432f74f3ec7cb1205009893c;p=thirdparty%2Fsystemd.git efi: fix typo Follow-up for f4e081051d950a09ce9331ba55eaf604dac72652. --- diff --git a/src/boot/efi/pe.c b/src/boot/efi/pe.c index 7cae3e7131a..2f9b058eb6d 100644 --- a/src/boot/efi/pe.c +++ b/src/boot/efi/pe.c @@ -450,7 +450,7 @@ static size_t pe_section_table_find_profile_length( assert(start >= section_table); assert(start < section_table + n_section_table); - /* Look for the next .profile (or the end of the table), this is where the the sections for this + /* Look for the next .profile (or the end of the table), this is where the sections for this * profile end. The base profile does not start with a .profile, the others do, hence conditionally * skip over the first entry. */ const PeSectionHeader *e; @@ -485,7 +485,7 @@ EFI_STATUS pe_locate_profile_sections( if (!p) return EFI_NOT_FOUND; - /* Look for the next .profile (or the end of the table), this is where the the sections for this + /* Look for the next .profile (or the end of the table), this is where the sections for this * profile end. */ size_t n = pe_section_table_find_profile_length(section_table, n_section_table, p, profile);