This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Mach".
The branch, master has been updated via 4687a5fffa8bf611294dac3854a882c37b21f9ab (commit) from 0bb929fab7a2689ec9ec1e55fe4765a54a39c46c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4687a5fffa8bf611294dac3854a882c37b21f9ab Author: Milos Nikic <nikic.mi...@google.com> Date: Tue Jun 24 00:58:44 2025 +0100 i386 kern: fix overflow in vm_object_print_part call The call to vm_object_print_part was passing 0ULL and ~0ULL for offset and size, respectively. These values are 64-bit (unsigned long long), which causes compiler warnings when building for 32-bit platforms where vm_offset_t and vm_size_t are typedefs of uintptr_t (i.e., unsigned int). This patch replaces those constants with 0 and UINTPTR_MAX, which match the expected types and avoid implicit conversion or overflow warnings. No functional change. Message-ID: <20250623235844.763-1-nikic.mi...@gmail.com> ----------------------------------------------------------------------- Summary of changes: vm/vm_object.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- GNU Mach