Module Name:    src
Committed By:   kiyohara
Date:           Wed Feb 24 12:29:47 UTC 2010

Modified Files:
        src/sys/dev/usb: udl.c

Log Message:
Fix porting miss.
  However this change in between #ifdef notyet and #endif.
  Thanks for fukaumi.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/udl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/udl.c
diff -u src/sys/dev/usb/udl.c:1.1 src/sys/dev/usb/udl.c:1.2
--- src/sys/dev/usb/udl.c:1.1	Mon Nov 30 16:18:34 2009
+++ src/sys/dev/usb/udl.c	Wed Feb 24 12:29:47 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: udl.c,v 1.1 2009/11/30 16:18:34 tsutsui Exp $	*/
+/*	$NetBSD: udl.c,v 1.2 2010/02/24 12:29:47 kiyohara Exp $	*/
 
 /*-
  * Copyright (c) 2009 FUKAUMI Naoki.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.1 2009/11/30 16:18:34 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.2 2010/02/24 12:29:47 kiyohara Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -1191,8 +1191,8 @@
 
 	x = d->x1;
 	y = d->y1;
-	width = d->x2 - d->x1 + 1;
-	height = d->y2 - d->y1 + 1;
+	width = d->x2 - d->x1;
+	height = d->y2 - d->y1;
 	sbase = y * sc->sc_width;
 	ebase = (y + height) * sc->sc_width;
 
@@ -1225,8 +1225,8 @@
 
 	x = d->x1;
 	y = d->y1;
-	width = d->x2 - d->x1 + 1;
-	height = d->y2 - d->y1 + 1;
+	width = d->x2 - d->x1;
+	height = d->y2 - d->y1;
 	soff = y * sc->sc_width + x;
 	eoff = (y + height) * sc->sc_width + x;
 

Reply via email to