summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-05-08 19:40:56 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-05-08 19:40:56 +0000
commitf4765ff369e62b14b2ea8503934cb7c672458033 (patch)
treeedc95964eb95ff938a3950e05619944ad0d0fc4a /sys
parent463c9182d9d8fe1dbce45179d47bb56bafd792ca (diff)
correct 1 printf.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/subr_extent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_extent.c b/sys/kern/subr_extent.c
index c853908984f..dac25fa6928 100644
--- a/sys/kern/subr_extent.c
+++ b/sys/kern/subr_extent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_extent.c,v 1.13 2001/05/08 19:29:37 fgsch Exp $ */
+/* $OpenBSD: subr_extent.c,v 1.14 2001/05/08 19:40:55 fgsch Exp $ */
/* $NetBSD: subr_extent.c,v 1.7 1996/11/21 18:46:34 cgd Exp $ */
/*-
@@ -540,8 +540,8 @@ extent_alloc_subregion1(ex, substart, subend, size, alignment, skew, boundary,
panic("extent_alloc_subregion: bad alignment");
if (boundary && (boundary < size)) {
printf(
- "extent_alloc_subregion: extent `%s', size 0x%lx,
- boundary 0x%lx\n", ex->ex_name, size, boundary);
+ "extent_alloc_subregion: extent `%s', size 0x%lx, "
+ "boundary 0x%lx\n", ex->ex_name, size, boundary);
panic("extent_alloc_subregion: bad boundary");
}
#endif