From 9f7340804176b8edef40eeb128a223a646bcd7dc Mon Sep 17 00:00:00 2001 From: ultramage Date: Tue, 29 May 2007 09:00:02 +0000 Subject: Hopefully fixed the vsnprintf incompatibility git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10645 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/common/cbasetypes.h | 3 +++ 2 files changed, 5 insertions(+) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index b1397a978..3ac378a1e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/05/29 + * Hopefully fixed the vsnprintf incompatibility 2007/05/28 * Fixed an infinite char-server loop on the map connection [ultramage] * RFIFOREST returns 0 when the session is eof (input data is implicitly diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index 56bbb3235..bfced3441 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -185,6 +185,9 @@ typedef unsigned long long uint64; #define strncasecmp strnicmp #define strncmpi strnicmp #define snprintf _snprintf +#if defined(_MSC_VER) && _MSC_VER < 1400 +#define vsnprintf _vsnprintf +#endif #else #define strcmpi strcasecmp #define stricmp strcasecmp -- cgit v1.2.3-70-g09d2