From 05e04b5edfa620d03f6f70b7b16945e575effdd5 Mon Sep 17 00:00:00 2001 From: jmmv Date: Sun, 5 Mar 2006 16:04:37 +0000 Subject: [PATCH] Add missing closing parenthesis to a diagnostic message. --- sys/dev/wscons/wsmouse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/wscons/wsmouse.c b/sys/dev/wscons/wsmouse.c index 862888118ddb..ac9ce063c355 100644 --- a/sys/dev/wscons/wsmouse.c +++ b/sys/dev/wscons/wsmouse.c @@ -1,4 +1,4 @@ -/* $NetBSD: wsmouse.c,v 1.42 2006/02/10 20:38:54 christos Exp $ */ +/* $NetBSD: wsmouse.c,v 1.43 2006/03/05 16:04:37 jmmv Exp $ */ /*- * Copyright (c) 2006 The NetBSD Foundation, Inc. @@ -111,7 +111,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: wsmouse.c,v 1.42 2006/02/10 20:38:54 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: wsmouse.c,v 1.43 2006/03/05 16:04:37 jmmv Exp $"); #include "wsmouse.h" #include "wsdisplay.h" @@ -466,7 +466,7 @@ wsmouse_input_xyzw(struct device *wsmousedev, u_int btns /* 0 is up */, if (nevents >= sizeof(events) / sizeof(events[0])) { printf("%s: Event queue full (button status mb=0x%x" - " ub=0x%x\n", sc->sc_base.me_dv.dv_xname, mb, ub); + " ub=0x%x)\n", sc->sc_base.me_dv.dv_xname, mb, ub); break; }