On Wed, 9 Jun 2021 at 07:25, Heinrich Schuchardt <xypron.g...@gmx.de> wrote: > > 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.g...@gmx.de> > --- > lib/efi_loader/efi_image_loader.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/efi_loader/efi_image_loader.c > b/lib/efi_loader/efi_image_loader.c > index bcd57f7fcc..a0eb63fceb 100644 > --- a/lib/efi_loader/efi_image_loader.c > +++ b/lib/efi_loader/efi_image_loader.c > @@ -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. > -- > 2.30.2 >
Reviewed-by: Masahisa Kojima <masahisa.koj...@linaro.org> Thanks, Masahisa Kojima