Re: [PATCH hurd] Improve portability for rpctrace on x86_64

2023-04-24 Thread Samuel Thibault
Applied, thanks! Flavio Cruz, le lun. 24 avril 2023 00:57:53 -0400, a ecrit: > Defined alignment as __alignof__(uintptr_t) to match MiG. > > Also used char* instead of void* during the message iteration since it's > more portable as pointer arithmetic on void* is a GNU extension. > --- > utils/r

[PATCH hurd] Improve portability for rpctrace on x86_64

2023-04-23 Thread Flavio Cruz
Defined alignment as __alignof__(uintptr_t) to match MiG. Also used char* instead of void* during the message iteration since it's more portable as pointer arithmetic on void* is a GNU extension. --- utils/rpctrace.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/util