Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic PR/50927: David Binderman: Fix wrong paren
details: https://anonhg.NetBSD.org/src/rev/fc08c7ef4ca2
branches: trunk
changeset: 814157:fc08c7ef4ca2
user: christos <christos%NetBSD.org@localhost>
date: Wed Mar 09 20:07:04 2016 +0000
description:
PR/50927: David Binderman: Fix wrong paren
diffstat:
sys/dev/ic/arn9003.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 579d4e122f1f -r fc08c7ef4ca2 sys/dev/ic/arn9003.c
--- a/sys/dev/ic/arn9003.c Wed Mar 09 20:06:31 2016 +0000
+++ b/sys/dev/ic/arn9003.c Wed Mar 09 20:07:04 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: arn9003.c,v 1.7 2015/05/24 17:08:50 matt Exp $ */
+/* $NetBSD: arn9003.c,v 1.8 2016/03/09 20:07:04 christos Exp $ */
/* $OpenBSD: ar9003.c,v 1.25 2012/10/20 09:53:32 stsp Exp $ */
/*-
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: arn9003.c,v 1.7 2015/05/24 17:08:50 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arn9003.c,v 1.8 2016/03/09 20:07:04 christos Exp $");
#include <sys/param.h>
#include <sys/sockio.h>
@@ -2235,7 +2235,7 @@
if (cal->pwr_meas_q == 0)
continue;
- if ((iq_corr_neg = cal->iq_corr_meas < 0))
+ if ((iq_corr_neg = cal->iq_corr_meas) < 0)
cal->iq_corr_meas = -cal->iq_corr_meas;
i_coff_denom =
Home |
Main Index |
Thread Index |
Old Index