summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index e3d808d..dc7a789 100644
--- a/test.c
+++ b/test.c
@@ -78,7 +78,7 @@ static int tests = 0, fails = 0, skips = 0;
static void millisleep(int ms)
{
-#if _MSC_VER
+#ifdef _MSC_VER
Sleep(ms);
#else
usleep(ms*1000);