Fix GCC 3.3.1 nits

This commit is contained in:
matt 2003-09-21 15:12:16 +00:00
parent c280e763ef
commit b9d20d131e
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vidcrender.c,v 1.12 2003/07/15 00:24:43 lukem Exp $ */
/* $NetBSD: vidcrender.c,v 1.13 2003/09/21 15:12:19 matt Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe
@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vidcrender.c,v 1.12 2003/07/15 00:24:43 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: vidcrender.c,v 1.13 2003/09/21 15:12:19 matt Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -1284,9 +1284,9 @@ vidc_cursor_init(vc)
(void) pmap_extract(pmap_kernel(), (vaddr_t)cursor_normal,
(paddr_t *)&p_cursor_normal);
(void *)&p_cursor_normal);
(void) pmap_extract(pmap_kernel(), (vaddr_t)cursor_transparent,
(paddr_t *)&p_cursor_transparent);
(void *)&p_cursor_transparent);
/*
memset ( cursor_normal, 0x55,

View File

@ -1,4 +1,4 @@
/* $NetBSD: vidc20config.c,v 1.16 2003/04/01 23:19:10 thorpej Exp $ */
/* $NetBSD: vidc20config.c,v 1.17 2003/09/21 15:12:16 matt Exp $ */
/*
* Copyright (c) 2001 Reinoud Zandijk
@ -48,7 +48,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.16 2003/04/01 23:19:10 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.17 2003/09/21 15:12:16 matt Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -618,9 +618,9 @@ vidcvideo_cursor_init(int width, int height)
(void) pmap_extract(pmap_kernel(), (vaddr_t)cursor_normal,
(paddr_t *)&p_cursor_normal);
(void *)&p_cursor_normal);
(void) pmap_extract(pmap_kernel(), (vaddr_t)cursor_transparent,
(paddr_t *)&p_cursor_transparent);
(void *)&p_cursor_transparent);
memset ( cursor_normal, 0x55, width*height ); /* white? */
memset ( cursor_transparent, 0x00, width*height ); /* to see the diffence */