From d7fe1f51adbc8829189cb42fefe47f60b93f34f5 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 15 Nov 2004 08:22:38 +0000 Subject: [PATCH] style polishing. --- sys/vm/vm_pager.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c index 90cde2db060a..deee6aec9fe0 100644 --- a/sys/vm/vm_pager.c +++ b/sys/vm/vm_pager.c @@ -314,8 +314,7 @@ initpbuf(struct buf *bp) * relatively soon when the rest of the subsystems get smart about it. XXX */ struct buf * -getpbuf(pfreecnt) - int *pfreecnt; +getpbuf(int *pfreecnt) { int s; struct buf *bp; @@ -355,8 +354,7 @@ getpbuf(pfreecnt) * call understand how to use pfreecnt. */ struct buf * -trypbuf(pfreecnt) - int *pfreecnt; +trypbuf(int *pfreecnt) { int s; struct buf *bp; @@ -387,9 +385,7 @@ trypbuf(pfreecnt) * relatively soon when the rest of the subsystems get smart about it. XXX */ void -relpbuf(bp, pfreecnt) - struct buf *bp; - int *pfreecnt; +relpbuf(struct buf *bp, int *pfreecnt) { int s;