From: Keng-Yu Lin Date: Wed, 26 Apr 2023 05:43:16 +0000 (-0400) Subject: efi/http: change uint32_t to uintn_t X-Git-Tag: archive/raspbian/2.12-8+rpi1~28 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=19c50f23d85a3f7d23a82242db1a2833f64dc13e;p=grub2.git efi/http: change uint32_t to uintn_t Modify UINT32 to UINTN in EFI_HTTP_MESSAGE to be UEFI 2.9 compliant. Signed-off-by: Keng-Yu Lin Signed-off-by: Nicolas Frayer Ubuntu-Bug: https://bugs.launchpad.net/bugs/2043084 Gbp-Pq: Topic network Gbp-Pq: Name rhboot-http-message-field-size.patch --- diff --git a/include/grub/efi/http.h b/include/grub/efi/http.h index 79592cd..242d001 100644 --- a/include/grub/efi/http.h +++ b/include/grub/efi/http.h @@ -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;