diff options
| author | simonb <simonb@NetBSD.org> | 2003-04-10 03:36:02 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2003-04-10 03:36:02 +0000 |
| commit | d0f1ac29652e45943e8b373ab506b48a1be24c03 (patch) | |
| tree | 8cce08a537979b8e65b8cc2e4ddac3b29e003134 /sys/dev/raidframe | |
| parent | b5154d96e40b0dce44fc779d359a6516a7d5e5fc (diff) | |
Remove an assigned-to but unused variable.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_netbsdkintf.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index b97743dd6b8..43f30f5c7b1 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_netbsdkintf.c,v 1.156 2003/03/21 23:11:23 dsl Exp $ */ +/* $NetBSD: rf_netbsdkintf.c,v 1.157 2003/04/10 03:36:02 simonb Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -111,7 +111,7 @@ ***********************************************************/ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.156 2003/03/21 23:11:23 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.157 2003/04/10 03:36:02 simonb Exp $"); #include <sys/param.h> #include <sys/errno.h> @@ -2637,14 +2637,13 @@ void rf_ReconstructInPlaceThread(req) struct rf_recon_req *req; { - int retcode; int s; RF_Raid_t *raidPtr; s = splbio(); raidPtr = req->raidPtr; raidPtr->recon_in_progress = 1; - retcode = rf_ReconstructInPlace(raidPtr, req->row, req->col); + rf_ReconstructInPlace(raidPtr, req->row, req->col); RF_Free(req, sizeof(*req)); raidPtr->recon_in_progress = 0; splx(s); |
