Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/iomd Don't pass NULL as an integer.
details: https://anonhg.NetBSD.org/src/rev/7574d6ebe45d
branches: trunk
changeset: 554054:7574d6ebe45d
user: chris <chris%NetBSD.org@localhost>
date: Fri Oct 24 23:03:50 2003 +0000
description:
Don't pass NULL as an integer.
diffstat:
sys/arch/arm/iomd/vidcvideo.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r ce6f5e39cd48 -r 7574d6ebe45d sys/arch/arm/iomd/vidcvideo.c
--- a/sys/arch/arm/iomd/vidcvideo.c Fri Oct 24 22:39:51 2003 +0000
+++ b/sys/arch/arm/iomd/vidcvideo.c Fri Oct 24 23:03:50 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vidcvideo.c,v 1.17 2003/05/06 00:29:57 reinoud Exp $ */
+/* $NetBSD: vidcvideo.c,v 1.18 2003/10/24 23:03:50 chris Exp $ */
/*
* Copyright (c) 2001 Reinoud Zandijk
@@ -36,7 +36,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.17 2003/05/06 00:29:57 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.18 2003/10/24 23:03:50 chris Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -914,7 +914,7 @@
vidcvideo_progr_scroll(); /* sadistic ; shouldnt this be on vsync? */
/* wipe out remains of the screen if nessisary */
- if (ri->ri_emuheight != ri->ri_height) vv_eraserows(id, ri->ri_rows, 1, NULL);
+ if (ri->ri_emuheight != ri->ri_height) vv_eraserows(id, ri->ri_rows, 1, 0);
return;
};
Home |
Main Index |
Thread Index |
Old Index