diff --git a/code/AssxmlExporter.cpp b/code/AssxmlExporter.cpp index 9e8037649..765a8f88b 100644 --- a/code/AssxmlExporter.cpp +++ b/code/AssxmlExporter.cpp @@ -77,7 +77,7 @@ static int ioprintf( IOStream * io, const char *format, ... ) { ::memset( sz, '\0', Size ); va_list va; va_start( va, format ); - int nSize = std::vsnprintf( sz, Size-1, format, va ); + int nSize = vsnprintf( sz, Size-1, format, va ); ai_assert( nSize < Size ); va_end( va );