Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Feb 2010 19:02:33 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r204052 - head/sys/mips/mips
Message-ID:  <201002181902.o1IJ2XDx050968@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002181902.o1IJ2XDx050968>