summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>2001-03-01 21:38:36 +0000
committerConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>2001-03-01 21:38:36 +0000
commitf392cdc12d30750c0bd086ac34b4c72d13b90610 (patch)
tree7a588533b073df55757cc71f0075c8a07eae8a09 /sys
parent400f69cdf0fc2e9a787988f6e2b64980e7767c70 (diff)
Fix compilation problems caused by last update
Diffstat (limited to 'sys')
-rw-r--r--sys/vm/vm_swap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c
index 73857085549..da769c91d9a 100644
--- a/sys/vm/vm_swap.c
+++ b/sys/vm/vm_swap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_swap.c,v 1.13 2001/02/24 19:07:12 csapuntz Exp $ */
+/* $OpenBSD: vm_swap.c,v 1.14 2001/03/01 21:38:35 csapuntz Exp $ */
/* $NetBSD: vm_swap.c,v 1.64 1998/11/08 19:45:17 mycroft Exp $ */
/*
@@ -861,6 +861,7 @@ swstrategy(bp)
{
struct swapdev *sdp;
daddr_t bn;
+ int s;
bn = bp->b_blkno;
sdp = swap_getsdpfromaddr(bn);