From 75d0c1d8219047d0dfc80dea8752ea695516f19d Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Tue, 12 Nov 2013 10:25:40 -0500 Subject: [PATCH] netboot.h: fix build error on 32-bit systems Function prototype/implementation mismatch. Change-Id: I89aaae1b49d0372d3aed76fc21c194e0ae55f72e Signed-off-by: Andrew Boie --- netboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netboot.h b/netboot.h index 2cdb421..6417373 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