Date: Mon, 25 Apr 2005 05:05:41 GMT From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 75924 for review Message-ID: <200504250505.j3P55ffW058143@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=75924 Change 75924 by marcel@marcel_nfs on 2005/04/25 05:05:26 Clear all 25 lines. This piece of code has a high probability of being changed anyway, but having it right (as intended) avoids stupid cut-n-paste bugs. Affected files ... .. //depot/projects/tty/sys/dev/vga/vga.c#3 edit Differences ... ==== //depot/projects/tty/sys/dev/vga/vga.c#3 (text+ko) ==== @@ -180,7 +180,7 @@ if (sc->vga_console) return (0); - for (y = 0; y < 24; y++) + for (y = 0; y < 25; y++) for (x = 0; x < 80; x++) vga_write(sc, y, x, ' ', 7);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504250505.j3P55ffW058143>