Skip to content
Snippets Groups Projects
Commit 48ddbe93 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

libxml2: fix snprintf workaround

MSVC2015 is a team player!
parent 51c49664
Branches
Tags
No related merge requests found
......@@ -250,7 +250,7 @@
#cmakedefine _WINSOCKAPI_
/* Win32 Std C name mangling work-around */
#if defined(_MSC_VER)
#if defined(_MSC_VER) && !defined(HAVE_SNPRINTF)
# define snprintf _snprintf
#endif
......@@ -258,6 +258,6 @@
/* #undef ss_family */
/* Win32 Std C name mangling work-around */
#if defined(_MSC_VER) && (_MSC_VER < 1500)
#if defined(_MSC_VER) && (_MSC_VER < 1500) && !defined(HAVE_VSNPRINTF)
# define vsnprintf _vsnprintf
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment