diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1997-03-24 17:42:25 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1997-03-24 17:42:25 +0000 |
| commit | c2df2e4bc2e193f629f93165eaeb2dde24c09bb2 (patch) | |
| tree | 1e20a1411f21be123490a3823eda9649f738540d | |
| parent | c49659eaa6b589c543010666ea47a796b73a596d (diff) | |
Notes
| -rw-r--r-- | sys/i386/scsi/aic7xxx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/scsi/aic7xxx.c b/sys/i386/scsi/aic7xxx.c index f6ae3c638934..d89727df229a 100644 --- a/sys/i386/scsi/aic7xxx.c +++ b/sys/i386/scsi/aic7xxx.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.107 1997/03/23 06:33:36 bde Exp $ + * $Id: aic7xxx.c,v 1.108 1997/03/24 05:05:18 gibbs Exp $ */ /* * TODO: @@ -3186,7 +3186,7 @@ ahc_find_scb(ahc, scb) break; } ahc_outb(ahc, SCBPTR, saved_scbptr); - if (curindex > ahc->scb_data->maxhscbs) + if (curindex >= ahc->scb_data->maxhscbs) curindex = SCB_LIST_NULL; return curindex; |
