Skip to content

Commit

Permalink
efi/http: change uint32_t to uintn_t
Browse files Browse the repository at this point in the history
Modify UINT32 to UINTN in EFI_HTTP_MESSAGE to
be UEFI 2.9 compliant.

Signed-off-by: Keng-Yu Lin <kengyu@hpe.com>
Signed-off-by: Nicolas Frayer <nfrayer@redhat.com>
  • Loading branch information
keng-yu authored and nfrayer committed Aug 8, 2023
1 parent c98f9ea commit 205b7b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/grub/efi/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ typedef struct {
grub_efi_http_request_data_t *request;
grub_efi_http_response_data_t *response;
} data;
grub_efi_uint32_t header_count;
grub_efi_uintn_t header_count;
grub_efi_http_header_t *headers;
grub_efi_uint32_t body_length;
grub_efi_uintn_t body_length;
void *body;
} grub_efi_http_message_t;

Expand Down

0 comments on commit 205b7b4

Please sign in to comment.