diff options
Diffstat (limited to 'bfd/netbsd.h')
-rw-r--r-- | bfd/netbsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/netbsd.h b/bfd/netbsd.h index a1fa384..7a9929a 100644 --- a/bfd/netbsd.h +++ b/bfd/netbsd.h @@ -31,7 +31,7 @@ #define N_HEADER_IN_TEXT(x) 1 /* Determine if this is a shared library using the flags. */ -#define N_SHARED_LIB(x) (N_DYNAMIC (x)) +#define N_SHARED_LIB(x) (N_DYNAMIC (x)) /* We have 6 bits of flags and 10 bits of machine ID. */ #define N_MACHTYPE(execp) \ @@ -45,7 +45,7 @@ | (((flags) & 0x3f) << 24)) #define N_SET_MACHTYPE(execp, machtype) \ ((execp)->a_info = \ - ((execp)->a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16)) + ((execp)->a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16)) #define N_SET_FLAGS(execp, flags) \ ((execp)->a_info = \ ((execp)->a_info & 0x03ffffff) | ((flags & 0x03f) << 26)) |