summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2020-01-27 02:02:28 +0000
committerkrw <krw@openbsd.org>2020-01-27 02:02:28 +0000
commit4e704ea78a7d6a337325cc57220fe93794feb373 (patch)
treed658507623132529c24e09c4b66ce4eeb6ef2926
parentin hhmm mode, check that len(time) is 4 to avoid confusion. (diff)
downloadwireguard-openbsd-4e704ea78a7d6a337325cc57220fe93794feb373.tar.xz
wireguard-openbsd-4e704ea78a7d6a337325cc57220fe93794feb373.zip
Prototypes should not name the parameters.
-rw-r--r--sys/dev/ic/twevar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/twevar.h b/sys/dev/ic/twevar.h
index 4fe62116691..11724b6e529 100644
--- a/sys/dev/ic/twevar.h
+++ b/sys/dev/ic/twevar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: twevar.h,v 1.11 2020/01/26 00:53:31 krw Exp $ */
+/* $OpenBSD: twevar.h,v 1.12 2020/01/27 02:02:28 krw Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -87,6 +87,6 @@ struct twe_softc {
#define TWE_UNLOCK(sc, lock) splx(lock)
typedef int twe_lock_t;
-void twe_minphys(struct buf *bp, struct scsi_link *sl);
+void twe_minphys(struct buf *, struct scsi_link *);
int twe_attach(struct twe_softc *);
int twe_intr(void *);