summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2013-10-31 13:56:56 -0700
committerPeter Jones <pjones@redhat.com>2013-11-12 10:25:40 -0500
commit434e854202236ec5809dbb96589fc34313dbff9e (patch)
tree7b7be77fa4f2fdf2709cf873f9638db422a1b5f2
parent8e9d3af7b108cc76ce18017b3f58ad4b2e60989f (diff)
downloadefi-boot-shim-434e854202236ec5809dbb96589fc34313dbff9e.tar.gz
efi-boot-shim-434e854202236ec5809dbb96589fc34313dbff9e.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