diff options
author | 2007-09-19 21:54:22 +0000 | |
---|---|---|
committer | 2007-09-19 21:54:22 +0000 | |
commit | d6e4aab1b1aa595a62cf87e2206f81f5732dd86b (patch) | |
tree | 2d5d9714d95d038e3617e3c4898e97a61873ee45 | |
parent | the missing piece of my commit earlier, cc now calls ccom_<arch> (diff) | |
download | wireguard-openbsd-d6e4aab1b1aa595a62cf87e2206f81f5732dd86b.tar.xz wireguard-openbsd-d6e4aab1b1aa595a62cf87e2206f81f5732dd86b.zip |
fix CARDBUS_DEBUG
noted by Markus Hennecke
-rw-r--r-- | sys/dev/cardbus/cardbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cardbus/cardbus.c b/sys/dev/cardbus/cardbus.c index 1b29fe4ab36..9df1fd3931b 100644 --- a/sys/dev/cardbus/cardbus.c +++ b/sys/dev/cardbus/cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cardbus.c,v 1.36 2007/09/19 04:25:52 miod Exp $ */ +/* $OpenBSD: cardbus.c,v 1.37 2007/09/19 21:54:22 martin Exp $ */ /* $NetBSD: cardbus.c,v 1.24 2000/04/02 19:11:37 mycroft Exp $ */ /* @@ -77,7 +77,7 @@ typedef void (*tuple_decode_func)(u_int8_t *, int, void *); STATIC int decode_tuples(u_int8_t *, int, tuple_decode_func, void *); STATIC void parse_tuple(u_int8_t *, int, void *); #ifdef CARDBUS_DEBUG -STATIC void print_tuple(u_int8_t *, int, void *); +static void print_tuple(u_int8_t *, int, void *); #endif STATIC int cardbus_read_tuples(struct cardbus_attach_args *, |