summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-23 13:25:32 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-23 13:25:32 +0000
commit8f041ba8e5fb5588a34f5ec416675a0696306243 (patch)
treebe49c3b1561d2077fa94e9a1c328464150bbbc94 /sys
parent1694f084732e3fd41b2594922184771d8217f4b8 (diff)
An empty arglist is called __P((void)) not __P(())
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/pmax/dev/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/dev/device.h b/sys/arch/pmax/dev/device.h
index e21b7b08d76..434e1b7d2c6 100644
--- a/sys/arch/pmax/dev/device.h
+++ b/sys/arch/pmax/dev/device.h
@@ -54,7 +54,7 @@ struct pmax_driver {
/* routine to start operation */
void (*d_start) __P((struct ScsiCmd *cmd));
/* routine to call when operation complete */
- void (*d_done) __P(());
+ void (*d_done) __P((void));
/* routine to call when interrupt is seen */
int (*d_intr) __P((void* sc));
};