diff options
| author | Matthew Garrett <mjg@redhat.com> | 2012-07-02 11:54:21 -0400 |
|---|---|---|
| committer | Matthew Garrett <mjg@redhat.com> | 2012-07-02 11:54:21 -0400 |
| commit | 6eb1eca4f3fd8e2116572bb2a8ccf68920261581 (patch) | |
| tree | cdc9435393e8a9d0c2cd66f923f57914e4b2ca6e | |
| parent | 45c13d2989f92aa59beb9d9f1fd688674b14a518 (diff) | |
| download | efi-boot-shim-6eb1eca4f3fd8e2116572bb2a8ccf68920261581.tar.gz efi-boot-shim-6eb1eca4f3fd8e2116572bb2a8ccf68920261581.zip | |
Fix type of buffersize
| -rw-r--r-- | shim.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -763,7 +763,7 @@ static EFI_STATUS load_grub (EFI_LOADED_IMAGE *li, void **data, EFI_FILE_INFO *fileinfo = NULL; EFI_FILE_IO_INTERFACE *drive; EFI_FILE *root, *grub; - unsigned int buffersize = sizeof(EFI_FILE_INFO); + UINTN buffersize = sizeof(EFI_FILE_INFO); device = li->DeviceHandle; |
