diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
| commit | e39756439c7255bc16ba14b7b991cb01ba1c93bd (patch) | |
| tree | 112dfed9c5841280f457e0dca97e8de49e04ecd9 /sys/kern/kern_module.c | |
| parent | 13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_module.c')
| -rw-r--r-- | sys/kern/kern_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_module.c b/sys/kern/kern_module.c index 540be5323852..46c3d14786f5 100644 --- a/sys/kern/kern_module.c +++ b/sys/kern/kern_module.c @@ -39,10 +39,10 @@ MALLOC_DEFINE(M_MODULE, "module", "module data structures"); -typedef TAILQ_HEAD(, struct module) modulelist_t; +typedef TAILQ_HEAD(, module) modulelist_t; struct module { - TAILQ_ENTRY(struct module) link; /* chain together all modules */ - TAILQ_ENTRY(struct module) flink; /* all modules in a file */ + TAILQ_ENTRY(module) link; /* chain together all modules */ + TAILQ_ENTRY(module) flink; /* all modules in a file */ struct linker_file* file; /* file which contains this module */ int refs; /* reference count */ int id; /* unique id number */ |
