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 0bb929fab7a2689ec9ec1e55fe4765a54a39c46c (commit) from 3dd7daf59de83dc1675f6647a616a7e50ed533b2 (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 0bb929fab7a2689ec9ec1e55fe4765a54a39c46c Author: Milos Nikic <nikic.mi...@gmail.com> Date: Tue Jun 24 02:35:44 2025 +0100 kdb: Fix printf format warning for phys_addr_t When building without PAE support, phys_addr_t is defined as unsigned long, but the kdb printf call uses %llx, which expects an unsigned long long. This triggers a -Wformat warning due to a type mismatch. Fix this by explicitly casting the phys_addr_t value to unsigned long long, ensuring the format string and argument type always match. This avoids build warnings while preserving existing type definitions. Message-ID: <20250624013544.842-1-nikic.mi...@gmail.com> ----------------------------------------------------------------------- Summary of changes: i386/i386at/acpi_parse_apic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- GNU Mach