From 07730e7a161cf7cc5065520ba0b7c97497647f07 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 29 Apr 2020 07:34:50 +1000 Subject: [PATCH] Fix a typo. --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index 82ee4d03..1339206e 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -7892,7 +7892,7 @@ static void ma_post_log_messagev(ma_context* pContext, ma_device* pDevice, ma_ui need to restrict this branch to Visual Studio. For other compilers we need to just not support formatted logging because I don't want the security risk of overflowing a fixed sized stack allocated buffer. */ - #if defined(_MSC_VER) && _MSC_VER >= 1200 /* 1200 = VC6 */ + #if defined(_MSC_VER) && _MSC_VER > 1200 /* 1200 = VC6 */ int formattedLen; va_list args2;