[PATCH Hurd] Code refactor

2024-12-06 Thread Zhaoming Luo
--- lwip/options.c | 2 +- lwip/pfinet-ops.c | 2 +- lwip/port/netif/hurdethif.c | 2 +- lwip/port/netif/hurdtunif.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lwip/options.c b/lwip/options.c index 2cfad44d..a22be26c 100644 --- a/lwip/options.c ++

Re: [PATCH] ipc_kmsg: fix print of size of mach_msg_header

2024-12-06 Thread Samuel Thibault
Applied, thanks! Etienne Brateau, le ven. 06 déc. 2024 14:44:19 +0100, a ecrit: > msgh_size is a mach_msg_size_t which represent an unsigned int, so %u > must me used there instead of %d > --- > ipc/ipc_kmsg.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ipc/ipc_kmsg.

[PATCH] ipc_kmsg: fix print of size of mach_msg_header

2024-12-06 Thread Etienne Brateau
msgh_size is a mach_msg_size_t which represent an unsigned int, so %u must me used there instead of %d --- ipc/ipc_kmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c index b23cae7c..fe6582d1 100644 --- a/ipc/ipc_kmsg.c +++ b/ipc/ipc_kmsg.c @@