summaryrefslogtreecommitdiff
path: root/sys/kern/subr_extent.c
diff options
context:
space:
mode:
authorSylvestre Gallon <syl@cvs.openbsd.org>2013-08-08 23:25:07 +0000
committerSylvestre Gallon <syl@cvs.openbsd.org>2013-08-08 23:25:07 +0000
commitad67cab56df7438e4864a37249583030f1008d95 (patch)
tree185751aa242862ac99aaba69385fb7a3c950afb7 /sys/kern/subr_extent.c
parent81b2323af9761573aaf81aeea5224a3538ae133a (diff)
Uncomment kprintf format attributes for sys/kern
tested on vax (gcc3) ok miod@
Diffstat (limited to 'sys/kern/subr_extent.c')
-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 48b638fee2b..98b52baab84 100644
--- a/sys/kern/subr_extent.c
+++ b/sys/kern/subr_extent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_extent.c,v 1.47 2013/02/17 17:39:29 miod Exp $ */
+/* $OpenBSD: subr_extent.c,v 1.48 2013/08/08 23:25:06 syl Exp $ */
/* $NetBSD: subr_extent.c,v 1.7 1996/11/21 18:46:34 cgd Exp $ */
/*-
@@ -70,7 +70,7 @@
#if defined(DIAGNOSTIC) || defined(DDB)
void extent_print1(struct extent *, int (*)(const char *, ...)
- /* __attribute__((__format__(__kprintf__,1,2))) */);
+ __attribute__((__format__(__kprintf__,1,2))));
#endif
static void extent_insert_and_optimize(struct extent *, u_long, u_long,
@@ -1160,7 +1160,7 @@ extent_print(struct extent *ex)
void
extent_print1(struct extent *ex,
- int (*pr)(const char *, ...) /* __attribute__((__format__(__kprintf__,1,2))) */)
+ int (*pr)(const char *, ...) __attribute__((__format__(__kprintf__,1,2))))
{
struct extent_region *rp;