diff options
Diffstat (limited to 'sys/i386/isa/loran.c')
-rw-r--r-- | sys/i386/isa/loran.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/loran.c b/sys/i386/isa/loran.c index b4c5daa..0da59b5 100644 --- a/sys/i386/isa/loran.c +++ b/sys/i386/isa/loran.c @@ -33,7 +33,7 @@ #include <i386/isa/isa_device.h> #endif /* _KERNEL */ -typedef TAILQ_HEAD(, datapoint) dphead_t; +typedef TAILQ_HEAD(, struct datapoint) dphead_t; struct datapoint { /* Fields used by kernel */ @@ -48,7 +48,7 @@ struct datapoint { u_int qsig; u_int ssig; u_int64_t epoch; - TAILQ_ENTRY(datapoint) list; + TAILQ_ENTRY(struct datapoint) list; int vco; int bounce; pid_t pid; |