From c8784667fb7a116d80e679a180d9e0adc46c0850 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 6 Nov 2014 10:03:11 -0600 Subject: libdl/.../mips/machine/elf_machdep.h: Fix typo so compiles --- cpukit/libdl/include/arch/mips/machine/elf_machdep.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cpukit/libdl/include/arch/mips/machine/elf_machdep.h b/cpukit/libdl/include/arch/mips/machine/elf_machdep.h index d27d431835..26700ce4ce 100644 --- a/cpukit/libdl/include/arch/mips/machine/elf_machdep.h +++ b/cpukit/libdl/include/arch/mips/machine/elf_machdep.h @@ -9,20 +9,23 @@ #define ARCH_ELFSIZE 32 /* MD native binary size */ #endif -#if ELFSIZE == 32 +#if ARCH_ELFSIZE == 32 #define ELF32_MACHDEP_ID_CASES \ case EM_MIPS: \ break; #define ELF32_MACHDEP_ID EM_MIPS -#elif ELFSIZE == 64 + +#elif ARCH_ELFSIZE == 64 #define ELF64_MACHDEP_ID_CASES \ case EM_MIPS: \ break; #define ELF64_MACHDEP_ID EM_MIPS + #endif + /* mips relocs. */ #define R_MIPS_NONE 0 -- cgit v1.2.3