summaryrefslogtreecommitdiffstats
path: root/kiss/mkiss.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 02:34:19 +0200
committerRalf Baechle <ralf@linux-mips.org>2013-06-17 17:17:29 +0200
commit4eb951133d9d301184ebd7b675598e11973b6ab8 (patch)
treed7647d95c75ee826eb6879c69206d689f900f3b8 /kiss/mkiss.c
parent1c830798fe54268cc0f9585b5940bea47fa8eb8a (diff)
Always have a space between if, for, switch, while and the following `('.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'kiss/mkiss.c')
-rw-r--r--kiss/mkiss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kiss/mkiss.c b/kiss/mkiss.c
index fbb1e53..265bfeb 100644
--- a/kiss/mkiss.c
+++ b/kiss/mkiss.c
@@ -219,7 +219,7 @@ static int kiss_tx(int fd, int port, unsigned char *s, int len, int usecrc)
* For each byte in the packet, send the appropriate
* character sequence, according to the SLIP protocol.
*/
- for(i = 0; i < len - 1; i++)
+ for (i = 0; i < len - 1; i++)
ptr += put_ubyte(ptr, &crc, s[i], usecrc);
/*