diff options
author | hannken <hannken@cvs.openbsd.org> | 1996-01-21 09:25:35 +0000 |
---|---|---|
committer | hannken <hannken@cvs.openbsd.org> | 1996-01-21 09:25:35 +0000 |
commit | 8b3185af4b9f6bb98cfa755d88853fed7c75e34c (patch) | |
tree | b8d240bf7191180b009b3d43fe033b0966216579 /sys/dev/isa/aha.c | |
parent | 3bc13976af56fd56459bb653b2d52eb428d0bebe (diff) |
Corrected typo when removing CCB's from the hash list.
Diffstat (limited to 'sys/dev/isa/aha.c')
-rw-r--r-- | sys/dev/isa/aha.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c index e454c5879b2..504ae2b5c69 100644 --- a/sys/dev/isa/aha.c +++ b/sys/dev/isa/aha.c @@ -758,7 +758,9 @@ aha_free_ccb(aha, ccb, flags) *hashccb = (*hashccb)->nexthash; break; } - (*hashccb) = (*hashccb)->nexthash; + hashccb = &(*hashccb)->nexthash; + } + } ccb->flags = CCB_FREE; |