Remove unnecessary curly brackets in tests/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander
2014-11-13 15:20:43 +01:00
parent 91cc3d9570
commit f5e65e4b71
12 changed files with 38 additions and 76 deletions

View File

@@ -70,9 +70,8 @@ int main(int argc, char **argv) {
if (!log)
goto cleanup;
for (i = 1; i < argc; i++) {
for (i = 1; i < argc; i++)
fprintf(log, "ARG:%s\n", argv[i]);
}
origenv = environ;
n = 0;