From 0e8738a48c239ce6d010bba9ed7c38bd86307f32 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 9 Oct 2024 17:14:58 +0000 Subject: [PATCH] Fix header guard in sysdeps/mach/hurd/x86_64/vm_param.h GCC mainline produces a -Wheader-guard error building for x86_64-gnu. Fix what seems to be incorrect macro naming in the #ifndef conditional. Tested with build-many-glibc.py for x86_64-gnu (GCC mainline). Message-ID: --- sysdeps/mach/hurd/x86_64/vm_param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/mach/hurd/x86_64/vm_param.h b/sysdeps/mach/hurd/x86_64/vm_param.h index 460445f49e9..a6e63a3a1ae 100644 --- a/sysdeps/mach/hurd/x86_64/vm_param.h +++ b/sysdeps/mach/hurd/x86_64/vm_param.h @@ -15,7 +15,7 @@ License along with the GNU C Library; if not, see . */ -#ifndef _X86_86_VM_PARAM_H +#ifndef _X86_64_VM_PARAM_H #define _X86_64_VM_PARAM_H /* Arbitrary start of the brk. This is after usual binary and library mappings. */ -- 2.47.2