Blind fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2007-08-22 13:49:38 +00:00
parent c7074d4419
commit 55339e8cb8

View File

@ -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)
// ----------------------------------------------------------------------------