From 740a1973a62eaa8e1dc23e22f84dacb3346d303a Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Tue, 23 May 2000 20:41:01 +0000 Subject: 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 --- sys/dev/aic/aicvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/aic') 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; -- cgit v1.2.3