efi_loader: fix Sphinx warning
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 8 Jun 2021 22:21:24 +0000 (00:21 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Wed, 9 Jun 2021 10:35:01 +0000 (12:35 +0200)
Brackets '[' need to be escaped to avoid a build warning

    lib/efi_loader/efi_image_loader.c:223:
    WARNING: Inline strong start-string without end-string.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Masahisa Kojima <masahisa.kojima@linaro.org>
lib/efi_loader/efi_image_loader.c

index bcd57f7..a0eb63f 100644 (file)
@@ -220,7 +220,7 @@ static void efi_set_code_and_data_type(
  * @end:       End address of region (excluded)
  * @nocheck:   flag against overlapped regions
  *
- * Take one entry of region [@start, @end[ and insert it into the list.
+ * Take one entry of region \[@start, @end\[ and insert it into the list.
  *
  * * If @nocheck is false, the list will be sorted ascending by address.
  *   Overlapping entries will not be allowed.