diff options
-rw-r--r-- | arch/alpha/boot/tools/objstrip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/boot/tools/objstrip.c b/arch/alpha/boot/tools/objstrip.c index 96154e768a20..ef1838230291 100644 --- a/arch/alpha/boot/tools/objstrip.c +++ b/arch/alpha/boot/tools/objstrip.c | |||
@@ -144,7 +144,7 @@ main (int argc, char *argv[]) | |||
144 | #ifdef __ELF__ | 144 | #ifdef __ELF__ |
145 | elf = (struct elfhdr *) buf; | 145 | elf = (struct elfhdr *) buf; |
146 | 146 | ||
147 | if (elf->e_ident[0] == 0x7f && strncmp(elf->e_ident + 1, "ELF", 3) == 0) { | 147 | if (elf->e_ident[0] == 0x7f && strncmp((char *)elf->e_ident + 1, "ELF", 3) == 0) { |
148 | if (elf->e_type != ET_EXEC) { | 148 | if (elf->e_type != ET_EXEC) { |
149 | fprintf(stderr, "%s: %s is not an ELF executable\n", | 149 | fprintf(stderr, "%s: %s is not an ELF executable\n", |
150 | prog_name, inname); | 150 | prog_name, inname); |