Module Name:    src
Committed By:   tsutsui
Date:           Sat Sep 12 19:39:12 UTC 2009

Modified Files:
        src/sys/dev/sun: bt_subr.c

Log Message:
Remove an extra parenthesis in #ifdef'ed out part. PR kern/41858


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/sun/bt_subr.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/sun/bt_subr.c
diff -u src/sys/dev/sun/bt_subr.c:1.13 src/sys/dev/sun/bt_subr.c:1.14
--- src/sys/dev/sun/bt_subr.c:1.13	Sat Apr 18 14:58:04 2009
+++ src/sys/dev/sun/bt_subr.c	Sat Sep 12 19:39:12 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: bt_subr.c,v 1.13 2009/04/18 14:58:04 tsutsui Exp $ */
+/*	$NetBSD: bt_subr.c,v 1.14 2009/09/12 19:39:12 tsutsui Exp $ */
 
 /*
  * Copyright (c) 1993
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bt_subr.c,v 1.13 2009/04/18 14:58:04 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bt_subr.c,v 1.14 2009/09/12 19:39:12 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -217,7 +217,7 @@
 	 * Figure out where to start in the RGB arrays
 	 * See btreg.h for the way RGB triplets are packed into 4-byte words.
 	 */
-	c[0] = &cm->red[(4 * count) / 3)];
+	c[0] = &cm->red[(4 * count) / 3];
 	c[1] = &cm->green[(4 * count) / 3];
 	c[2] = &cm->blue[(4 * count) / 3];
 	p = &c[0];

Reply via email to