Fix MSVC build

This commit is contained in:
Victor Zverovich 2013-02-27 14:51:39 -08:00
parent 478d004c1d
commit e19eceafec

View File

@ -94,7 +94,7 @@ void Increment(char *s) {
enum {BUFFER_SIZE = 256};
#ifdef _MSC_VER
# define vsnprintf _vsprintf_s
# define vsnprintf vsprintf_s
#endif
void SPrintf(char *buffer, const char *format, ...) {