diff options
author | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
commit | d93fbc99166053b75c2eeb69b5cb603cfaf79ec0 (patch) | |
tree | a4f130be4544ce7cfe4afa8c93f996b871433cb8 /sys/boot/common | |
parent | e814d2a0db522b0f163eef55a56d05aa226951f3 (diff) | |
download | FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.zip FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.tar.gz |
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
Diffstat (limited to 'sys/boot/common')
-rw-r--r-- | sys/boot/common/bootstrap.h | 6 | ||||
-rw-r--r-- | sys/boot/common/pnp.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/boot/common/bootstrap.h b/sys/boot/common/bootstrap.h index 4c38154..9bb6f5d 100644 --- a/sys/boot/common/bootstrap.h +++ b/sys/boot/common/bootstrap.h @@ -122,7 +122,7 @@ struct pnphandler struct pnpident { char *id_ident; /* ASCII identifier, actual format varies with bus/handler */ - STAILQ_ENTRY(pnpident) id_link; + STAILQ_ENTRY(struct pnpident) id_link; }; struct pnpinfo @@ -133,8 +133,8 @@ struct pnpinfo int pi_argc; /* module arguments */ char **pi_argv; struct pnphandler *pi_handler; /* handler which detected this device */ - STAILQ_HEAD(,pnpident) pi_ident; /* list of identifiers */ - STAILQ_ENTRY(pnpinfo) pi_link; + STAILQ_HEAD(, struct pnpident) pi_ident; /* list of identifiers */ + STAILQ_ENTRY(struct pnpinfo) pi_link; }; extern struct pnphandler *pnphandlers[]; /* provided by MD code */ diff --git a/sys/boot/common/pnp.c b/sys/boot/common/pnp.c index bb3695b..b425bc2 100644 --- a/sys/boot/common/pnp.c +++ b/sys/boot/common/pnp.c @@ -15,7 +15,7 @@ #include <string.h> #include <bootstrap.h> -STAILQ_HEAD(,pnpinfo) pnp_devices; +STAILQ_HEAD(, struct pnpinfo) pnp_devices; static int pnp_devices_initted = 0; static void pnp_discard(void); |