aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dpt
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-25 11:56:37 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-25 11:56:37 +0000
commit01777fec624e6cde979df001c2cba478c2f58f19 (patch)
tree99208c7257e8f53cd66b6dd57b6a8371a2cb22ab /sys/dev/dpt
parent57394688f895765d4c15878797380fa13bea9972 (diff)
Notes
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r--sys/dev/dpt/dpt_scsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c
index df99dee82aba..0fbb3c7d4fd0 100644
--- a/sys/dev/dpt/dpt_scsi.c
+++ b/sys/dev/dpt/dpt_scsi.c
@@ -64,7 +64,7 @@
* 3. dpt_handle_timeouts potentially inserts into the queue
*/
-#ident "$Id: dpt_scsi.c,v 1.2 1998/02/10 17:36:44 eivind Exp $"
+#ident "$Id: dpt_scsi.c,v 1.3 1998/02/20 13:11:45 bde Exp $"
#define _DPT_C_
#include "opt_dpt.h"
@@ -3098,7 +3098,7 @@ static INLINE_Q void
dpt_Qpush_free(dpt_softc_t * dpt, dpt_ccb_t * ccb)
{
#ifdef DPT_FREELIST_IS_STACK
- TAILQ_INSERT_HEAD(&dpt->free_ccbs, ccb, links)
+ TAILQ_INSERT_HEAD(&dpt->free_ccbs, ccb, links);
#else
TAILQ_INSERT_TAIL(&dpt->free_ccbs, ccb, links);
#endif