summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>2003-09-03 13:05:50 +0000
committersimonb <simonb@NetBSD.org>2003-09-03 13:05:50 +0000
commit553d2b901ff7dee5d20c734be3e698d1efe8a01d (patch)
tree018c6ae49d47fa46abfcad33cbb0da8368daf003 /sys/dev
parent8b2d4b4f3cfd9f45a613bd2650214d53c48c1aca (diff)
Add missing semicolon.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/com.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index 95418ed4e81..db2b874a2eb 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $NetBSD: com.c,v 1.218 2003/09/01 16:44:03 christos Exp $ */
+/* $NetBSD: com.c,v 1.219 2003/09/03 13:05:50 simonb Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@@ -73,7 +73,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.218 2003/09/01 16:44:03 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com.c,v 1.219 2003/09/03 13:05:50 simonb Exp $");
#include "opt_com.h"
#include "opt_ddb.h"
@@ -1184,7 +1184,7 @@ comioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
TIMESPEC_TO_TIMEVAL((struct timeval *)data,
&sc->ppsinfo.assert_timestamp);
#else
- sc->sc_ppsassert = -1
+ sc->sc_ppsassert = -1;
sc->sc_ppsclear = 0;
TIMESPEC_TO_TIMEVAL((struct timeval *)data,
&sc->ppsinfo.clear_timestamp);