Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/sun Remove an extra parenthesis in #ifdef'ed out par...
details: https://anonhg.NetBSD.org/src/rev/114098077c12
branches: trunk
changeset: 747383:114098077c12
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Sat Sep 12 19:39:12 2009 +0000
description:
Remove an extra parenthesis in #ifdef'ed out part. PR kern/41858
diffstat:
sys/dev/sun/bt_subr.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 7164636f67a7 -r 114098077c12 sys/dev/sun/bt_subr.c
--- a/sys/dev/sun/bt_subr.c Sat Sep 12 19:16:35 2009 +0000
+++ b/sys/dev/sun/bt_subr.c Sat Sep 12 19:39:12 2009 +0000
@@ -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];
Home |
Main Index |
Thread Index |
Old Index