Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Mar 2002 20:04:14 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 8601 for review
Message-ID:  <200203290404.g2T44Es90621@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8601

Change 8601 by peter@peter_thunder on 2002/03/28 20:03:31

	Use the correct type for hash table lookup.

Affected files ...

... //depot/projects/ia64/sys/boot/common/load_elf.c#3 edit

Differences ...

==== //depot/projects/ia64/sys/boot/common/load_elf.c#3 (text+ko) ====

@@ -48,11 +48,11 @@
     Elf_Phdr 	*ph;
     Elf_Ehdr	*ehdr;
     Elf_Sym	*symtab;
-    Elf_Off	*hashtab;
+    Elf_Hashelt	*hashtab;
     Elf_Hashelt	nbuckets;
     Elf_Hashelt	nchains;
-    Elf_Hashelt* buckets;
-    Elf_Hashelt* chains;
+    Elf_Hashelt	*buckets;
+    Elf_Hashelt	*chains;
     char	*strtab;
     size_t	strsz;
     int		fd;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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