Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Dec 2019 22:27:06 +0000 (UTC)
From:      Brandon Bergren <bdragon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356062 - head/sys/dev/aic7xxx
Message-ID:  <201912242227.xBOMR6xB049873@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdragon
Date: Tue Dec 24 22:27:06 2019
New Revision: 356062
URL: https://svnweb.freebsd.org/changeset/base/356062

Log:
  Fix trivial whitespace issue that is tripping -Wmisleading-indentation
  in clang HEAD.
  
  There was an invisible space in the middle of the tabs, and that apprently
  was enough to throw off clang's column counting.
  
  Even if clang is "incorrect" here, it's still a style(9) violation.

Modified:
  head/sys/dev/aic7xxx/aic7xxx.c

Modified: head/sys/dev/aic7xxx/aic7xxx.c
==============================================================================
--- head/sys/dev/aic7xxx/aic7xxx.c	Tue Dec 24 20:13:29 2019	(r356061)
+++ head/sys/dev/aic7xxx/aic7xxx.c	Tue Dec 24 22:27:06 2019	(r356062)
@@ -1749,7 +1749,7 @@ ahc_find_syncrate(struct ahc_softc *ahc, u_int *period
 			 * At some speeds, we only support
 			 * ST transfers.
 			 */
-		 	if ((syncrate->sxfr_u2 & ST_SXFR) != 0)
+			if ((syncrate->sxfr_u2 & ST_SXFR) != 0)
 				*ppr_options &= ~MSG_EXT_PPR_DT_REQ;
 			break;
 		}



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