Commit 07730e7a authored by David Reid's avatar David Reid

Fix a typo.

parent e1f39d97
......@@ -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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment