code-style: whitespace fixes

This commit is contained in:
Hiltjo Posthuma
2015-09-06 22:33:41 +02:00
committed by sin
parent 51009a9600
commit 53be158979
5 changed files with 22 additions and 15 deletions

2
sed.c
View File

@@ -1329,7 +1329,7 @@ cmd_l(Cmd *c)
printf("%s", escapes[(unsigned int)*p]);
rlen = 1;
} else if (!(rlen = charntorune(&r, p, end - p))) {
/* ran out of chars, print the bytes of the short sequence */
/* ran out of chars, print the bytes of the short sequence */
for (; p < end; p++)
printf("\\%03hho", (unsigned char)*p);
break;