summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTestParallel/lockFile.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTestParallel/lockFile.c')
-rw-r--r--Tests/CTestTestParallel/lockFile.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/CTestTestParallel/lockFile.c b/Tests/CTestTestParallel/lockFile.c
index 6a6a889..a515107 100644
--- a/Tests/CTestTestParallel/lockFile.c
+++ b/Tests/CTestTestParallel/lockFile.c
@@ -10,11 +10,10 @@ int main(void)
const char* fname = "lockedFile.txt";
file = fopen(fname, "w");
- for(i = 0; i < 10000; i++)
- {
+ for (i = 0; i < 10000; i++) {
fprintf(file, "%s", "x");
fflush(file);
- }
+ }
fclose(file);
return remove(fname);
}