tests/: Remove the whitespace before ";"

This commit is contained in:
Osier Yang
2013-05-21 23:41:45 +08:00
parent e25ca77303
commit bb3ea8416b
14 changed files with 48 additions and 48 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ int main(int argc, char **argv)
int failConnect = 0; /* Exit -1, with no data on stdout, msg on stderr */
int dieEarly = 0; /* Exit -1, with partial data on stdout, msg on stderr */
for (i = 1 ; i < argc ; i++) {
for (i = 1; i < argc; i++) {
if (STREQ(argv[i], "nosuchhost"))
failConnect = 1;
else if (STREQ(argv[i], "crashinghost"))
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
return -1;
}
for (i = 1 ; i < argc ; i++)
for (i = 1; i < argc; i++)
printf("%s%c", argv[i], i == (argc -1) ? '\n' : ' ');
return 0;