diff options
| author | Andrew Boie <andrew.p.boie@intel.com> | 2013-11-12 10:25:40 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2013-11-12 10:25:40 -0500 |
| commit | 75d0c1d8219047d0dfc80dea8752ea695516f19d (patch) | |
| tree | 7b7be77fa4f2fdf2709cf873f9638db422a1b5f2 | |
| parent | b6a12d99be4659e85f383061749f2bd2f8e8f2d2 (diff) | |
| download | efi-boot-shim-75d0c1d8219047d0dfc80dea8752ea695516f19d.tar.gz efi-boot-shim-75d0c1d8219047d0dfc80dea8752ea695516f19d.zip | |
netboot.h: fix build error on 32-bit systems
Function prototype/implementation mismatch.
Change-Id: I89aaae1b49d0372d3aed76fc21c194e0ae55f72e
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
| -rw-r--r-- | netboot.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,5 +5,5 @@ extern BOOLEAN findNetboot(EFI_HANDLE image_handle); extern EFI_STATUS parseNetbootinfo(EFI_HANDLE image_handle); -extern EFI_STATUS FetchNetbootimage(EFI_HANDLE image_handle, VOID **buffer, UINTN *bufsiz); +extern EFI_STATUS FetchNetbootimage(EFI_HANDLE image_handle, VOID **buffer, UINT64 *bufsiz); #endif |
