diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2007-09-19 21:54:23 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2007-09-19 21:54:23 +0000 |
commit | d58eded2f30b4527840dc3d877dcfd326acee673 (patch) | |
tree | 62b075df41d84f61792ee93a72439f6fd5b62ba4 /sys | |
parent | 473cbaae22f2c9bd308874ba1f79cc81739999ca (diff) |
fix CARDBUS_DEBUG
noted by Markus Hennecke
Diffstat (limited to 'sys')
-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 *, |