Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2002 13:41:31 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 22077 for review
Message-ID:  <200212082141.gB8LfVCM062534@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=22077

Change 22077 by marcel@marcel_nfs on 2002/12/08 13:41:18

	Suppress warning by casting the result of efi_get_table()
	before asigning to bi_hcdp. No functional change.

Affected files ...

.. //depot/projects/ia64/sys/boot/efi/libefi/bootinfo.c#9 edit

Differences ...

==== //depot/projects/ia64/sys/boot/efi/libefi/bootinfo.c#9 (text+ko) ====

@@ -302,7 +302,7 @@
     bi->bi_symtab = ssym;
     bi->bi_esymtab = esym;
 
-    bi->bi_hcdp = efi_get_table(&hcdp);	/* Get the DIG64 HCDP table addr. */
+    bi->bi_hcdp = (uint64_t)efi_get_table(&hcdp); /* DIG64 HCDP table addr. */
     fpswa_init(&bi->bi_fpswa);		/* find FPSWA interface */
 
     /* find the last module in the chain */

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?200212082141.gB8LfVCM062534>