Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/sys/dev/wscons Pull up revision 1.65 (requested by rech...



details:   https://anonhg.NetBSD.org/src/rev/1b0838982103
branches:  netbsd-2-0
changeset: 561340:1b0838982103
user:      jdc <jdc%NetBSD.org@localhost>
date:      Sun Jun 13 08:22:01 2004 +0000

description:
Pull up revision 1.65 (requested by recht in ticket #457).

make the scroll lines ioctl struct take u_int's again. The wsconsctl
command does not deal with shorts well.

diffstat:

 sys/dev/wscons/wsconsio.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 5987c94a2852 -r 1b0838982103 sys/dev/wscons/wsconsio.h
--- a/sys/dev/wscons/wsconsio.h Sun Jun 13 08:18:05 2004 +0000
+++ b/sys/dev/wscons/wsconsio.h Sun Jun 13 08:22:01 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wsconsio.h,v 1.61.2.3 2004/06/07 09:54:21 tron Exp $ */
+/* $NetBSD: wsconsio.h,v 1.61.2.4 2004/06/13 08:22:01 jdc Exp $ */
 
 /*
  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
@@ -433,8 +433,8 @@
 #define        WSDISPLAY_SCROLL_DOFASTLINES    0x01
 #define        WSDISPLAY_SCROLL_DOSLOWLINES    0x02
 #define        WSDISPLAY_SCROLL_DOALL          0x03
-       uint16_t        fastlines;
-       uint16_t        slowlines;
+       u_int           fastlines;
+       u_int           slowlines;
 };
 
 #define        WSDISPLAYIO_DGSCROLL    _IOR('W', 87, struct wsdisplay_scroll_data)



Home | Main Index | Thread Index | Old Index