summaryrefslogtreecommitdiffstats
path: root/sys/sys/exec_elf.h
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2007-05-14 05:04:58 +0000
committertedu <tedu@openbsd.org>2007-05-14 05:04:58 +0000
commit9407ec588625bb79e52e23eb9ea5267ac2b07993 (patch)
tree06f3da7d0dc3cc2e24771a0ca14575b04db87f8a /sys/sys/exec_elf.h
parent_bus_dmamap_sync() is unused; ok miod (diff)
downloadwireguard-openbsd-9407ec588625bb79e52e23eb9ea5267ac2b07993.tar.xz
wireguard-openbsd-9407ec588625bb79e52e23eb9ea5267ac2b07993.zip
uint32_t is not spelled u_long. makes the 32-bit NO_ADDR potentially useful on
64-bit machines, even though it's not used. ok art deraadt millert tom
Diffstat (limited to 'sys/sys/exec_elf.h')
-rw-r--r--sys/sys/exec_elf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/exec_elf.h b/sys/sys/exec_elf.h
index e100776d48e..6b8fb1c0a2f 100644
--- a/sys/sys/exec_elf.h
+++ b/sys/sys/exec_elf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_elf.h,v 1.42 2006/10/06 20:58:17 miod Exp $ */
+/* $OpenBSD: exec_elf.h,v 1.43 2007/05/14 05:04:58 tedu Exp $ */
/*
* Copyright (c) 1995, 1996 Erik Theisen. All rights reserved.
*
@@ -485,7 +485,7 @@ typedef struct {
*/
#if defined(_KERNEL) || defined(_DYN_LOADER)
-#define ELF32_NO_ADDR ((u_long) ~0) /* Indicates addr. not yet filled in */
+#define ELF32_NO_ADDR ((uint32_t) ~0) /* Indicates addr. not yet filled in */
#define ELF_AUX_ENTRIES 8 /* Size of aux array passed to loader */
typedef struct {