svn commit: r356062 - head/sys/dev/aic7xxx

Brandon Bergren bdragon at FreeBSD.org
Tue Dec 24 22:27:06 UTC 2019


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;
 		}


More information about the svn-src-all mailing list