Module Name:    src
Committed By:   pgoyette
Date:           Tue Feb 27 05:49:08 UTC 2018

Modified Files:
        src/sys/dev/imcsmb: imcsmb.c

Log Message:
KNF - remove space between cast and variable


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/imcsmb/imcsmb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/imcsmb/imcsmb.c
diff -u src/sys/dev/imcsmb/imcsmb.c:1.8 src/sys/dev/imcsmb/imcsmb.c:1.9
--- src/sys/dev/imcsmb/imcsmb.c:1.8	Tue Feb 27 05:47:10 2018
+++ src/sys/dev/imcsmb/imcsmb.c	Tue Feb 27 05:49:08 2018
@@ -331,7 +331,7 @@ imcsmb_exec(void *cookie, i2c_op_t op, i
 			/* For byte operations, the data goes in the LSB, and
 			 * the MSB is a don't care.
 			 */
-			lword = *(uint8_t *) buf;
+			lword = *(uint8_t *)buf;
 		}
 		cmd_val |= lword;
 	}

Reply via email to