From 1aa8fc4a1e28a666a28fe0dbc3d9a9b66d90436b Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Sat, 13 Oct 2012 20:01:30 -0700 Subject: [PATCH] fix up rename on windows --- tinyxml2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.cpp b/tinyxml2.cpp index b710b40..2536414 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp @@ -1762,7 +1762,7 @@ void XMLPrinter::Print( const char* format, ... ) len = vsnprintf_s( _accumulator.Mem(), _accumulator.Capacity(), _TRUNCATE, format, va ); if ( len < 0 ) { expand *= 3/2; - accumulator.PushArr( expand ); + _accumulator.PushArr( expand ); } } char* p = _buffer.PushArr( len ) - 1;