diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-03-08 02:15:06 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-03-08 02:15:06 +0000 |
commit | 93b06f69b60afc6c696a6afc785ef4c63e310652 (patch) | |
tree | 3320304bd29a7b521703c50731805fee3c0bddd6 | |
parent | 43d03f528c2a4eff4dbaaeda397f5fec26f5a9a6 (diff) |
fix warning.
-rw-r--r-- | sys/scsi/ss.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/ss.c b/sys/scsi/ss.c index 570b9f78e03..9af9e525816 100644 --- a/sys/scsi/ss.c +++ b/sys/scsi/ss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ss.c,v 1.12 1997/03/07 12:57:55 kstailey Exp $ */ +/* $OpenBSD: ss.c,v 1.13 1997/03/08 02:15:05 kstailey Exp $ */ /* $NetBSD: ss.c,v 1.10 1996/05/05 19:52:55 christos Exp $ */ /* @@ -79,7 +79,9 @@ void ssstrategy __P((struct buf *)); void ssstart __P((void *)); void ssminphys __P((struct buf *)); +#ifdef NOTYET static int ss_set_window __P((struct ss_softc *, struct scan_io *)); +#endif struct scsi_device ss_switch = { NULL, |