diff options
author | phk <phk@FreeBSD.org> | 2004-11-15 08:22:38 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-11-15 08:22:38 +0000 |
commit | 042171d21796b48d46d6926ff75784cd24afbc85 (patch) | |
tree | 9172ec8dd41d2ff5e0c46b54c7c2453559f20780 /sys/vm | |
parent | ca008fe1710db893e5a8b7a8793ff2c5a0e2d9ee (diff) | |
download | FreeBSD-src-042171d21796b48d46d6926ff75784cd24afbc85.zip FreeBSD-src-042171d21796b48d46d6926ff75784cd24afbc85.tar.gz |
style polishing.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_pager.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c index 90cde2d..deee6ae 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; |