diff options
Diffstat (limited to 'Tests/CTestTestParallel/lockFile.c')
-rw-r--r-- | Tests/CTestTestParallel/lockFile.c | 5 |
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); } |