summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2006-11-17 09:21:53 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2006-11-17 09:21:53 +0000
commit2c7773167beb4fdd131226e93096728bf323c19e (patch)
tree1ee6bda2d859a8ae074708f34b815c093cb0a81b /sys/kern
parentaa748b97fe57f4635f47ab0336b87da3cb55858c (diff)
missing punctuation in comments; from bret lambert
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/subr_prf.c4
-rw-r--r--sys/kern/sys_pipe.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c
index 2c48e926320..fc64afc3e2e 100644
--- a/sys/kern/subr_prf.c
+++ b/sys/kern/subr_prf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_prf.c,v 1.67 2006/07/06 18:14:49 miod Exp $ */
+/* $OpenBSD: subr_prf.c,v 1.68 2006/11/17 09:21:52 jmc Exp $ */
/* $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $ */
/*-
@@ -1125,7 +1125,7 @@ overflow:
* XXX - these functions shouldn't be in the kernel, but gcc 3.X feels like
* translating some printf calls to puts and since it doesn't seem
* possible to just turn off parts of those optimizations (some of
- * them are really useful, we have to provide a dummy puts and putchar
+ * them are really useful), we have to provide a dummy puts and putchar
* that are wrappers around printf.
*/
int puts(const char *);
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 6f74615aedc..dda76df3692 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sys_pipe.c,v 1.50 2005/12/13 10:33:14 jsg Exp $ */
+/* $OpenBSD: sys_pipe.c,v 1.51 2006/11/17 09:21:52 jmc Exp $ */
/*
* Copyright (c) 1996 John S. Dyson
@@ -160,7 +160,7 @@ free1:
}
/*
- * Allocate kva for pipe circular buffer, the space is pageable
+ * Allocate kva for pipe circular buffer, the space is pageable.
* This routine will 'realloc' the size of a pipe safely, if it fails
* it will retain the old buffer.
* If it fails it will return ENOMEM.