From ed19ee38591ee81d74bd9a3fa8f0e9a7c9784e02 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Sun, 15 Jun 2014 08:25:54 +0000
Subject: [PATCH] Fix error in last commit.

Thanks Digital Man!
---
 src/conio/ciolib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conio/ciolib.c b/src/conio/ciolib.c
index 772893d5ee..1e6f64052b 100644
--- a/src/conio/ciolib.c
+++ b/src/conio/ciolib.c
@@ -854,7 +854,7 @@ CIOLIBEXPORT int CIOLIBCALL ciolib_cprintf(const char *fmat, ...)
 {
     va_list argptr;
 	int		ret;
-#if defined(_MSC_VER) || define(__MSVCRT__)	/* Can't figure out a way to allocate a "big enough" buffer for Win32. */
+#if defined(_MSC_VER) || defined(__MSVCRT__)	/* Can't figure out a way to allocate a "big enough" buffer for Win32. */
 	char	str[16384];
 #else
 	char	*str;
-- 
GitLab