Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Aug 2013 20:17:38 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254257 - head/sys/dev/mps
Message-ID:  <201308122017.r7CKHcDv061259@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Mon Aug 12 20:17:37 2013
New Revision: 254257
URL: http://svnweb.freebsd.org/changeset/base/254257

Log:
  Add brace missing in r254253.

Modified:
  head/sys/dev/mps/mps_sas.c

Modified: head/sys/dev/mps/mps_sas.c
==============================================================================
--- head/sys/dev/mps/mps_sas.c	Mon Aug 12 19:50:08 2013	(r254256)
+++ head/sys/dev/mps/mps_sas.c	Mon Aug 12 20:17:37 2013	(r254257)
@@ -308,7 +308,7 @@ mpssas_log_command(struct mps_command *c
 		return;
 
 	/* No need to be in here if debugging isn't enabled */
-	if (cm->cm_sc->mps_debug & level) == 0)
+	if ((cm->cm_sc->mps_debug & level) == 0)
 		return;
 
 	sbuf_new(&sb, str, sizeof(str), 0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308122017.r7CKHcDv061259>