Both legs of a digraph must return the same type. Therefore, replace digraph.

This commit is contained in:
gmcgarry 2008-06-24 10:22:03 +00:00
parent c1cd5c98e9
commit 1571ea373c
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* $SourceForge: bktr_os.c,v 1.5 2003/03/11 23:11:25 thomasklausner Exp $ */
/* $NetBSD: bktr_os.c,v 1.52 2008/06/08 18:18:34 tsutsui Exp $ */
/* $NetBSD: bktr_os.c,v 1.53 2008/06/24 10:22:03 gmcgarry Exp $ */
/* $FreeBSD: src/sys/dev/bktr/bktr_os.c,v 1.20 2000/10/20 08:16:53 roger Exp$ */
/*
@ -51,7 +51,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bktr_os.c,v 1.52 2008/06/08 18:18:34 tsutsui Exp $");
__KERNEL_RCSID(0, "$NetBSD: bktr_os.c,v 1.53 2008/06/24 10:22:03 gmcgarry Exp $");
#ifdef __FreeBSD__
#include "bktr.h"
@ -165,7 +165,7 @@ SYSCTL_INT(_hw_bt848, OID_AUTO, slow_msp_audio, CTLFLAG_RW, &bt848_slow_msp_audi
#define BKTR_DEBUG
#ifdef BKTR_DEBUG
int bktr_debug = 0;
#define DPR(x) (bktr_debug ? printf x : 0)
#define DPR(x) if (bktr_debug) printf x
#else
#define DPR(x)
#endif