aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/doscmd
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 /usr.bin/doscmd
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 'usr.bin/doscmd')
-rw-r--r--usr.bin/doscmd/callback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/doscmd/callback.c b/usr.bin/doscmd/callback.c
index 890c7142d454..3579233bcb3a 100644
--- a/usr.bin/doscmd/callback.c
+++ b/usr.bin/doscmd/callback.c
@@ -13,13 +13,13 @@
*/
struct callback {
- LIST_ENTRY(callback) chain;
+ LIST_ENTRY(struct callback) chain;
u_long vec;
callback_t func;
char *name;
};
-LIST_HEAD(cbhead , callback) cbhead[127];
+LIST_HEAD(cbhead, struct callback) cbhead[127];
#define CBHASH(x) (((x) * 17) % 127)