aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aic
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
commit740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch)
treeacf054a865eef37380f5ac3d3c07766b5bb234b0 /sys/dev/aic
parentb4183771fd8ab7a5946fd38df04c1e24b1268bea (diff)
downloadsrc-740a1973a62eaa8e1dc23e22f84dacb3346d303a.tar.gz
src-740a1973a62eaa8e1dc23e22f84dacb3346d303a.zip
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
Notes
Notes: svn path=/head/; revision=60833
Diffstat (limited to 'sys/dev/aic')
-rw-r--r--sys/dev/aic/aicvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/aic/aicvar.h b/sys/dev/aic/aicvar.h
index 5d789b493b95..ce43a6ba555d 100644
--- a/sys/dev/aic/aicvar.h
+++ b/sys/dev/aic/aicvar.h
@@ -76,7 +76,7 @@ struct aic_softc {
struct cam_sim *sim;
struct cam_path *path;
- TAILQ_HEAD(,ccb_hdr) pending_ccbs, nexus_ccbs;
+ TAILQ_HEAD(, struct ccb_hdr) pending_ccbs, nexus_ccbs;
struct aic_scb *nexus;
u_int32_t flags;