From 85d4a8bc4e248b992efcde8af001f156cd2c47a9 Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Mon, 9 Jul 2012 14:35:01 +0100 Subject: [PATCH] Fixed compilation of C code using ELF headers. --- headers/private/system/elf_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/system/elf_common.h b/headers/private/system/elf_common.h index edfd744b09..31eb0c0ecd 100644 --- a/headers/private/system/elf_common.h +++ b/headers/private/system/elf_common.h @@ -272,7 +272,7 @@ #endif #define DEFINE_ELF_TYPE(type, name) \ struct _ELF_TYPE(type); \ - typedef _ELF_TYPE(type) name + typedef struct _ELF_TYPE(type) name DEFINE_ELF_TYPE(Ehdr, elf_ehdr); DEFINE_ELF_TYPE(Phdr, elf_phdr);