PERFORCE change 78504 for review
Peter Wemm
peter at FreeBSD.org
Tue Jun 14 00:50:26 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=78504
Change 78504 by peter at peter_daintree on 2005/06/14 00:49:24
Fix the syscons panic. Pointers to varargs functions are not
interchangeable with pointers to non-varargs functions on amd64.
Affected files ...
.. //depot/projects/hammer/sys/dev/syscons/scvgarndr.c#6 edit
Differences ...
==== //depot/projects/hammer/sys/dev/syscons/scvgarndr.c#6 (text+ko) ====
@@ -92,7 +92,7 @@
static vr_draw_border_t vga_grborder;
#endif
-static void vga_nop(scr_stat *scp, ...);
+static void vga_nop(scr_stat *scp);
static sc_rndr_sw_t txtrndrsw = {
(vr_init_t *)vga_nop,
@@ -219,7 +219,7 @@
#endif
static void
-vga_nop(scr_stat *scp, ...)
+vga_nop(scr_stat *scp)
{
}
More information about the p4-projects
mailing list