From 7aa3dc6d452b4e73b4bf92b5a24b46def2126f93 Mon Sep 17 00:00:00 2001 From: simonb Date: Sun, 29 Jun 2003 14:09:21 +0000 Subject: Restore parentheses around return value that were removed with the previous commit. --- sys/dev/ic/com.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 13b06a8834d..db921203ecc 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $NetBSD: com.c,v 1.214 2003/06/28 14:21:34 darrenr Exp $ */ +/* $NetBSD: com.c,v 1.215 2003/06/29 14:09:21 simonb Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. @@ -77,7 +77,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.214 2003/06/28 14:21:34 darrenr Exp $"); +__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.215 2003/06/29 14:09:21 simonb Exp $"); #include "opt_com.h" #include "opt_ddb.h" @@ -1024,7 +1024,7 @@ compoll(dev_t dev, int events, struct lwp *l) if (COM_ISALIVE(sc) == 0) return (EIO); - return (*tp->t_linesw->l_poll)(tp, events, l); + return ((*tp->t_linesw->l_poll)(tp, events, l)); } struct tty * -- cgit