From c2648f6e230c4da5432f74f3ec7cb1205009893c Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 19 Sep 2024 09:14:21 +0900 Subject: [PATCH] efi: fix typo Follow-up for f4e081051d950a09ce9331ba55eaf604dac72652. --- src/boot/efi/pe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.3