summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTestUpload/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTestUpload/sleep.c')
-rw-r--r--Tests/CTestTestUpload/sleep.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/Tests/CTestTestUpload/sleep.c b/Tests/CTestTestUpload/sleep.c
index b589647..3baad9e 100644
--- a/Tests/CTestTestUpload/sleep.c
+++ b/Tests/CTestTestUpload/sleep.c
@@ -1,17 +1,16 @@
#if defined(_WIN32)
-# include <windows.h>
+#include <windows.h>
#else
-# include <unistd.h>
+#include <unistd.h>
#endif
/* sleeps for n seconds, where n is the argument to the program */
int main(int argc, char** argv)
{
int time;
- if(argc > 1)
- {
+ if (argc > 1) {
time = atoi(argv[1]);
- }
+ }
#if defined(_WIN32)
Sleep(time * 1000);
#else