diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
| commit | 740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch) | |
| tree | acf054a865eef37380f5ac3d3c07766b5bb234b0 /sys/compat/linux/linux_ioctl.c | |
| parent | b4183771fd8ab7a5946fd38df04c1e24b1268bea (diff) | |
Notes
Diffstat (limited to 'sys/compat/linux/linux_ioctl.c')
| -rw-r--r-- | sys/compat/linux/linux_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c index 582770fcf5d2..609baae740e9 100644 --- a/sys/compat/linux/linux_ioctl.c +++ b/sys/compat/linux/linux_ioctl.c @@ -85,12 +85,12 @@ DATA_SET(linux_ioctl_handler_set, termio_handler); struct handler_element { - TAILQ_ENTRY(handler_element) list; + TAILQ_ENTRY(struct handler_element) list; int (*func)(struct proc *, struct linux_ioctl_args *); int low, high, span; }; -static TAILQ_HEAD(, handler_element) handlers = +static TAILQ_HEAD(, struct handler_element) handlers = TAILQ_HEAD_INITIALIZER(handlers); static int |
