diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-14 05:04:59 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-14 05:04:59 +0000 |
commit | fe79a71ecb730a41387c25242e17be2bbdc20e48 (patch) | |
tree | a813a2fa379ca2ca609cc1a75f41da18c4364628 /sys | |
parent | 59a62fe21b5c535ddac22bbbf6c5bb456b5a9431 (diff) |
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')
-rw-r--r-- | sys/sys/exec_elf.h | 4 |
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 { |