diff options
author | Heinrich Schuchardt | 2019-05-10 19:03:49 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-05-12 20:54:22 +0200 |
commit | 0a84319665e764ab1c9f619f43c01ef1627f4053 (patch) | |
tree | 19bbbf8634d95fb9b0fa308dcd4f6cdefae370e3 | |
parent | 64b5ba4d293ac9b5416c286aa2d0051b6a9594d6 (diff) |
efi_loader: fix typo in efi_locate_handle() comment
%s/not buffer/no buffer/
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index b97d55cb451..887baaab026 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; |