summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-20 10:41:51 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-09-20 10:41:51 +0200
commit9b857f85b92bcf74e21392626ac437ddec3aa025 (patch)
treea1563f680d12fb2b0c8c4baa8a5a30e589bb0169
parent2583d28f62eb78dac51fee6823ac1fe926b21ac3 (diff)
downloadcurl-9b857f85b92bcf74e21392626ac437ddec3aa025.tar.gz
fixup typo in the ifdef
-rw-r--r--lib/urldata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 2b0a1190b..7a5001dc5 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -158,7 +158,7 @@ typedef ssize_t (Curl_recv)(struct connectdata *conn, /* connection data */
((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER))
/* the type we use for storing a single boolean bit */
-#ifdef _MSV_VER
+#ifdef _MSC_VER
#define BIT(x) bool x
#else
typedef unsigned int bit;