diff options
author | bde <bde@FreeBSD.org> | 1998-02-25 11:56:37 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-25 11:56:37 +0000 |
commit | e6fd98e05b9280564f7327a0896e042ab1319e68 (patch) | |
tree | 941be52dd7fdb289962cdc88fe77805d9148caed /sys/dev/dpt | |
parent | 0398ae2bf7418f729f8b0d22fb08c26557242cb4 (diff) | |
download | FreeBSD-src-e6fd98e05b9280564f7327a0896e042ab1319e68.zip FreeBSD-src-e6fd98e05b9280564f7327a0896e042ab1319e68.tar.gz |
Fixed a syntax error. Strange but correct code was broken by recent
changes to the queue macros.
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r-- | sys/dev/dpt/dpt_scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c index df99dee..0fbb3c7 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 |