summaryrefslogtreecommitdiff
path: root/Tests/Complex/Library/create_file.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Complex/Library/create_file.cxx')
-rw-r--r--Tests/Complex/Library/create_file.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Complex/Library/create_file.cxx b/Tests/Complex/Library/create_file.cxx
index d41551980..050ed0bac 100644
--- a/Tests/Complex/Library/create_file.cxx
+++ b/Tests/Complex/Library/create_file.cxx
@@ -8,7 +8,7 @@ int main (int argc, char *argv[])
fprintf(stderr, "Missing name of file to create.\n");
return EXIT_FAILURE;
}
-
+
FILE *stream = fopen(argv[1], "w");
if(stream == NULL)
{
@@ -23,6 +23,6 @@ int main (int argc, char *argv[])
}
fprintf(stdout, ">> Creating %s!\n", argv[1]);
-
+
return EXIT_SUCCESS;
}