summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2013-11-12 10:25:40 -0500
committerPeter Jones <pjones@redhat.com>2013-11-12 10:25:40 -0500
commit75d0c1d8219047d0dfc80dea8752ea695516f19d (patch)
tree7b7be77fa4f2fdf2709cf873f9638db422a1b5f2
parentb6a12d99be4659e85f383061749f2bd2f8e8f2d2 (diff)
downloadefi-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/netboot.h b/netboot.h
index 2cdb4218..6417373b 100644
--- a/netboot.h
+++ b/netboot.h
@@ -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