aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorb-r-o-c-k <brockmammen@gmail.com>2018-03-06 20:38:10 -0600
committerb-r-o-c-k <brockmammen@gmail.com>2018-03-06 20:38:10 -0600
commitc29a82c45f7be0f7ea46311e16a46a94f2173b98 (patch)
tree1bf4cf7aa4a6dd966169295e37139452102fa93b
parente0d55f2871784d882d30e7b0d9ffccf9c4dadc3b (diff)
downloadrneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.tar.gz
rneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.tar.bz2
rneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.zip
build/msvc: Make shell-test fix only apply to MSCV
-rw-r--r--test/functional/fixtures/shell-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fixtures/shell-test.c b/test/functional/fixtures/shell-test.c
index cc447d903f..a744d5df46 100644
--- a/test/functional/fixtures/shell-test.c
+++ b/test/functional/fixtures/shell-test.c
@@ -4,7 +4,7 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
-#ifdef WIN32
+#ifdef _MSC_VER
#include <Windows.h>
#define usleep(usecs) Sleep(usecs/1000)
#else