diff options
author | Joseph Myers <josmyers@redhat.com> | 2024-10-09 17:14:58 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-10-09 19:16:53 +0200 |
commit | 0e8738a48c239ce6d010bba9ed7c38bd86307f32 (patch) | |
tree | c4203810182438fcda24c38dacfa5bd993d2312c /sysdeps | |
parent | 1895a35e7092713b224166d36b9bc26e8eb3371f (diff) | |
download | glibc-0e8738a48c239ce6d010bba9ed7c38bd86307f32.zip glibc-0e8738a48c239ce6d010bba9ed7c38bd86307f32.tar.gz glibc-0e8738a48c239ce6d010bba9ed7c38bd86307f32.tar.bz2 |
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: <fd800046-5ecb-ebd5-4df1-29d4eb3d5433@redhat.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/x86_64/vm_param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/x86_64/vm_param.h b/sysdeps/mach/hurd/x86_64/vm_param.h index 460445f..a6e63a3 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 <https://www.gnu.org/licenses/>. */ -#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. */ |