summaryrefslogtreecommitdiff
path: root/sys/kern/kern_timeout.c
diff options
context:
space:
mode:
authorMike Pritchard <mpp@FreeBSD.org>1997-03-22 16:52:19 +0000
committerMike Pritchard <mpp@FreeBSD.org>1997-03-22 16:52:19 +0000
commit269ebc8621b72c625f5140941f580c392d462eee (patch)
tree20c55a9bbc2dba662fc39b10bae847a4b38bba9a /sys/kern/kern_timeout.c
parent4f09c5ae2564d7396f700f9ec9c0448e344fc2cc (diff)
Notes
Diffstat (limited to 'sys/kern/kern_timeout.c')
-rw-r--r--sys/kern/kern_timeout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c
index e5fa53962efa..2876e5be4077 100644
--- a/sys/kern/kern_timeout.c
+++ b/sys/kern/kern_timeout.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.32 1997/02/22 09:39:02 peter Exp $
+ * $Id: kern_clock.c,v 1.33 1997/03/22 06:52:56 bde Exp $
*/
/* Portions of this software are covered by the following: */
@@ -805,7 +805,7 @@ gettime(struct timeval *tvp)
int s;
s = splclock();
- /* XXX should use microtime() iff tv_usec is used. */
+ /* XXX should use microtime() if tv_usec is used. */
*tvp = time;
splx(s);
}