From ad968793ddb005fe89b019384fb22340a28fbdd1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 13 Sep 2006 11:59:31 +0000 Subject: [PATCH] fix wxVsnprintf_ declaration for VC8 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/wxchar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 82e17f0d6f..f0c11fc7b2 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -934,9 +934,9 @@ WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */ // behave mostly identic to our wxVsnprintf() implementation #if defined(__VISUALC__) && __VISUALC__ >= 1400 #if wxUSE_UNICODE - #define wxVsnprintf_ _vsprintf_p - #else #define wxVsnprintf_ _vswprintf_p + #else + #define wxVsnprintf_ _vsprintf_p #endif #endif #endif -- 2.45.2