summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1996-10-23 13:25:31 +0000
committerniklas <niklas@openbsd.org>1996-10-23 13:25:31 +0000
commit48b6eddac8b1575b23978d3efa392e7284af5969 (patch)
tree8d87a18ee514321a991237fc95b8d69a669e0ad2
parentintroduce multiconsoles. (diff)
downloadwireguard-openbsd-48b6eddac8b1575b23978d3efa392e7284af5969.tar.xz
wireguard-openbsd-48b6eddac8b1575b23978d3efa392e7284af5969.zip
An empty arglist is called __P((void)) not __P(())
-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));
};