From: Heinrich Schuchardt Date: Fri, 10 May 2019 17:03:49 +0000 (+0200) Subject: efi_loader: fix typo in efi_locate_handle() comment X-Git-Tag: v2019.07-rc2~3^2~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0a84319665e764ab1c9f619f43c01ef1627f4053;p=oweals%2Fu-boot.git efi_loader: fix typo in efi_locate_handle() comment %s/not buffer/no buffer/ Signed-off-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index b97d55cb45..887baaab02 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -1439,7 +1439,7 @@ static efi_status_t efi_locate_handle( *buffer_size = size; - /* The buffer size is sufficient but there is not buffer */ + /* The buffer size is sufficient but there is no buffer */ if (!buffer) return EFI_INVALID_PARAMETER;