From ba0e1a6224e996289d02b9e88c91868438706b66 Mon Sep 17 00:00:00 2001 From: bde Date: Fri, 8 Sep 1995 19:57:13 +0000 Subject: Actually, 97 out of 304 devsw functions had benignly mismatched types. --- sys/dev/joy/joy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/joy') diff --git a/sys/dev/joy/joy.c b/sys/dev/joy/joy.c index 97225a8..8d0dc25 100644 --- a/sys/dev/joy/joy.c +++ b/sys/dev/joy/joy.c @@ -103,7 +103,7 @@ joyattach (struct isa_device *dev) } int -joyopen (dev_t dev, int flag) +joyopen (dev_t dev, int flags, int fmt, struct proc *p) { int unit = UNIT (dev); int i = joypart (dev); @@ -115,7 +115,7 @@ joyopen (dev_t dev, int flag) return 0; } int -joyclose (dev_t dev, int flag) +joyclose (dev_t dev, int flags, int fmt, struct proc *p) { int unit = UNIT (dev); int i = joypart (dev); -- cgit v1.1