diff options
author | 1996-10-23 13:25:31 +0000 | |
---|---|---|
committer | 1996-10-23 13:25:31 +0000 | |
commit | 48b6eddac8b1575b23978d3efa392e7284af5969 (patch) | |
tree | 8d87a18ee514321a991237fc95b8d69a669e0ad2 | |
parent | introduce multiconsoles. (diff) | |
download | wireguard-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.h | 2 |
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)); }; |