All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] grub-core/net/http.c: Fix gcc-13 errors relating to type signedness
@ 2023-11-29 19:58 Mate Kukri
  2023-12-01 16:58 ` Daniel Kiper
  0 siblings, 1 reply; 2+ messages in thread
From: Mate Kukri @ 2023-11-29 19:58 UTC (permalink / raw)
  To: grub-devel; +Cc: Mate Kukri

Replace definition of `HTTP_PORT` with a pre-processor macro that converts
the constant to the correct type `grub_uint16_t`.

Change the defintion of local variable `port` in `http_establish()` to
have the same type.

Signed-off-by: Mate Kukri <mate.kukri@canonical.com>
---
 grub-core/net/http.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/grub-core/net/http.c b/grub-core/net/http.c
index df690acf6..1a73abfda 100644
--- a/grub-core/net/http.c
+++ b/grub-core/net/http.c
@@ -29,11 +29,7 @@
 
 GRUB_MOD_LICENSE ("GPLv3+");
 
-enum
-  {
-    HTTP_PORT = 80
-  };
-
+#define HTTP_PORT ((grub_uint16_t) 80)
 
 typedef struct http_data
 {
@@ -319,7 +315,7 @@ http_establish (struct grub_file *file, grub_off_t offset, int initial)
   struct grub_net_buff *nb;
   grub_err_t err;
   char *server = file->device->net->server;
-  int port = file->device->net->port;
+  grub_uint16_t port = file->device->net->port;
 
   nb = grub_netbuff_alloc (GRUB_NET_TCP_RESERVE_SIZE
 			   + sizeof ("GET ") - 1
-- 
2.39.2


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] grub-core/net/http.c: Fix gcc-13 errors relating to type signedness
  2023-11-29 19:58 [PATCH v2] grub-core/net/http.c: Fix gcc-13 errors relating to type signedness Mate Kukri
@ 2023-12-01 16:58 ` Daniel Kiper
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Kiper @ 2023-12-01 16:58 UTC (permalink / raw)
  To: Mate Kukri; +Cc: grub-devel

On Wed, Nov 29, 2023 at 07:58:25PM +0000, Mate Kukri wrote:
> Replace definition of `HTTP_PORT` with a pre-processor macro that converts
> the constant to the correct type `grub_uint16_t`.
>
> Change the defintion of local variable `port` in `http_establish()` to
> have the same type.
>
> Signed-off-by: Mate Kukri <mate.kukri@canonical.com>

Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>

Daniel

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-12-01 16:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-29 19:58 [PATCH v2] grub-core/net/http.c: Fix gcc-13 errors relating to type signedness Mate Kukri
2023-12-01 16:58 ` Daniel Kiper

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.