diff options
| author | Peter Jones <pjones@redhat.com> | 2017-10-23 12:20:56 -0400 |
|---|---|---|
| committer | Peter Jones <pmjones@gmail.com> | 2018-03-12 16:21:43 -0400 |
| commit | 3832428e0241b72af27afa7cb0ac9c85410bb2e7 (patch) | |
| tree | a97b0f2def4cbbab74bf03b7233c73f107f5cd44 | |
| parent | 8c42b9389f09a3630606abfbf463ace4d31d57da (diff) | |
| download | efi-boot-shim-3832428e0241b72af27afa7cb0ac9c85410bb2e7.tar.gz efi-boot-shim-3832428e0241b72af27afa7cb0ac9c85410bb2e7.zip | |
Fix the declaration of find_httpboot() to match its implementation.
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | httpboot.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
