mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 12:28:58 +00:00
Fixed replication error so that this compiles again.
Removed bogus comment and useless braces.
This commit is contained in:
parent
c9c0fe135d
commit
d9c15605e3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12448
@ -37,7 +37,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: sctarg.c,v 1.4 1995/07/13 16:08:57 bde Exp $
|
||||
* $Id: sctarg.c,v 1.5 1995/11/19 22:22:25 dyson Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -191,10 +191,9 @@ sctargstart(unit, unused_flags)
|
||||
}
|
||||
|
||||
bp = sctarg->buf_queue.tqh_first;
|
||||
if (bp == NULL) { /* yes, an assign */
|
||||
if (bp == NULL)
|
||||
return;
|
||||
}
|
||||
TAILQ_REMOVE( &pt->buf_queue, bp, b_act);
|
||||
TAILQ_REMOVE(&sctarg->buf_queue, bp, b_act);
|
||||
|
||||
/*
|
||||
* Fill out the scsi command
|
||||
|
Loading…
Reference in New Issue
Block a user