summaryrefslogtreecommitdiff
path: root/sys/kern/tty_nmea.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-03-20 20:14:30 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-03-20 20:14:30 +0000
commit3f2dbd961f646e27e6e275749a6752317d706a69 (patch)
tree562f6c0f6d1d9d4a860bd685b80ef695cd410db9 /sys/kern/tty_nmea.c
parent3dfaa4395e23395349528a970ee104d325018144 (diff)
swiss spelling
Diffstat (limited to 'sys/kern/tty_nmea.c')
-rw-r--r--sys/kern/tty_nmea.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty_nmea.c b/sys/kern/tty_nmea.c
index fa8643d444c..3d7cb7e694c 100644
--- a/sys/kern/tty_nmea.c
+++ b/sys/kern/tty_nmea.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty_nmea.c,v 1.19 2007/03/19 06:37:01 mbalmer Exp $ */
+/* $OpenBSD: tty_nmea.c,v 1.20 2007/03/20 20:14:29 deraadt Exp $ */
/*
* Copyright (c) 2006, 2007 Marc Balmer <mbalmer@openbsd.org>
@@ -410,7 +410,7 @@ nmea_time_to_nano(char *s, int64_t *nano)
if (fac)
return -1;
- /* Handle the fractions of a second, up to a maxmimum of 6 digits. */
+ /* Handle the fractions of a second, up to a maximum of 6 digits. */
div = 1L;
if (*s == '.') {
for (++s; div < 1000000 && *s && *s >= '0' && *s <= '9'; s++) {