svn commit: r204052 - head/sys/mips/mips

Warner Losh imp at FreeBSD.org
Thu Feb 18 19:02:33 UTC 2010


Author: imp
Date: Thu Feb 18 19:02:33 2010
New Revision: 204052
URL: http://svn.freebsd.org/changeset/base/204052

Log:
  Use proper structure type for 64-bit headers
  
  # this fixes the MALTA64 build

Modified:
  head/sys/mips/mips/elf_trampoline.c

Modified: head/sys/mips/mips/elf_trampoline.c
==============================================================================
--- head/sys/mips/mips/elf_trampoline.c	Thu Feb 18 18:57:15 2010	(r204051)
+++ head/sys/mips/mips/elf_trampoline.c	Thu Feb 18 19:02:33 2010	(r204052)
@@ -96,7 +96,7 @@ load_kernel(void * kstart)
 #ifdef __mips_n64
 	Elf64_Ehdr *eh;
 	Elf64_Phdr phdr[64] /* XXX */;
-	Elf64_Phdr shdr[64] /* XXX */;
+	Elf64_Shdr shdr[64] /* XXX */;
 #else
 	Elf32_Ehdr *eh;
 	Elf32_Phdr phdr[64] /* XXX */;


More information about the svn-src-all mailing list