]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
efi: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 19 Sep 2024 00:14:21 +0000 (09:14 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 19 Sep 2024 00:14:25 +0000 (09:14 +0900)
Follow-up for f4e081051d950a09ce9331ba55eaf604dac72652.

src/boot/efi/pe.c

index 7cae3e7131a1026b5bf276fe257305a90d719fdb..2f9b058eb6d1fdcdad02b0ec3db03d1887e5717f 100644 (file)
@@ -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);