From: Julian Smart Date: Wed, 22 Aug 2007 13:49:38 +0000 (+0000) Subject: Blind fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/55339e8cb8aeccc3fd958dad4001d954a57a5f0d Blind fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wxprintf.cpp b/src/common/wxprintf.cpp index f0c4c221b9..9e46924085 100644 --- a/src/common/wxprintf.cpp +++ b/src/common/wxprintf.cpp @@ -174,7 +174,7 @@ static int wxDoVsnprintf(CharType *buf, size_t lenMax, // NOTE2: the +1 is because we want to copy also the '\0' size_t tocopy = wxStrlen(format) + 1 - ( toparse - format ) ; - lenCur += wxCopyStrWithPercents(lenMax - lenCur, buf + lenCur, + lenCur += wxCopyStrWithPercents(lenMax - lenCur, buf + lenCur, tocopy, toparse) - 1; if (buf[lenCur]) { @@ -190,8 +190,6 @@ static int wxDoVsnprintf(CharType *buf, size_t lenMax, return lenCur; } -} // anonymous namespace - #endif // !defined(wxCRT_VsnprintfW) || !defined(wxCRT_VsnprintfA) // ----------------------------------------------------------------------------