diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 18:14:14 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 18:14:14 +0000 |
commit | ed82a666489faf46a5e0256133b8b0b717554f4c (patch) | |
tree | 333611d9e2cd49b64997fc10c0064228b0f60a3b /include/m_netlib.h | |
parent | 52decdef82fa132d941aef3901f50bd44825059d (diff) |
vc2015 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14600 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_netlib.h')
-rw-r--r-- | include/m_netlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_netlib.h b/include/m_netlib.h index 0035c1acf1..798f755a3c 100644 --- a/include/m_netlib.h +++ b/include/m_netlib.h @@ -785,7 +785,7 @@ typedef struct // #include <stdarg.h> and <stdio.h> before including this header in order to
// use it.
-#if defined va_start && (defined _STDIO_DEFINED || defined _STDIO_H_) && (!defined NETLIB_NOLOGGING)
+#if defined va_start && (defined _STDIO_DEFINED || defined _STDIO_H_ || defined _INC_STDIO) && (!defined NETLIB_NOLOGGING)
#pragma warning(disable:4505)
__inline INT_PTR Netlib_Logf(HANDLE hUser, const char *fmt, ...)
|