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 | 6d3e62ef2f8b0936e64364b258f395de8921137c (patch) | |
| tree | cdc9435393e8a9d0c2cd66f923f57914e4b2ca6e | |
| parent | cfdefb0ebe6cc06245fd8cfb72832e24511dd0ac (diff) | |
| download | efi-boot-shim-6d3e62ef2f8b0936e64364b258f395de8921137c.tar.gz efi-boot-shim-6d3e62ef2f8b0936e64364b258f395de8921137c.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; |
