From 3832428e0241b72af27afa7cb0ac9c85410bb2e7 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 23 Oct 2017 12:20:56 -0400 Subject: [PATCH] Fix the declaration of find_httpboot() to match its implementation. Signed-off-by: Peter Jones --- httpboot.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/httpboot.h b/httpboot.h index 527a856..2d8d1a1 100644 --- a/httpboot.h +++ b/httpboot.h @@ -34,8 +34,8 @@ #ifndef _HTTPBOOT_H_ #define _HTTPBOOT_H_ -BOOLEAN find_httpboot (EFI_DEVICE_PATH *devpath); - -EFI_STATUS httpboot_fetch_buffer (EFI_HANDLE image, VOID **buffer, UINT64 *buf_size); +extern BOOLEAN find_httpboot(EFI_HANDLE device); +extern EFI_STATUS httpboot_fetch_buffer(EFI_HANDLE image, VOID **buffer, + UINT64 *buf_size); #endif