From: Michael Wetherell Date: Sat, 15 Oct 2005 19:01:25 +0000 (+0000) Subject: Compilation fix for platforms where size_t is larger than long X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ea75e99e8f13bf5df8149ba8d2d6f55a4c81e8d8?ds=inline Compilation fix for platforms where size_t is larger than long git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/streams/zlibstream.cpp b/tests/streams/zlibstream.cpp index 30a87ee618..0f2480728b 100644 --- a/tests/streams/zlibstream.cpp +++ b/tests/streams/zlibstream.cpp @@ -376,8 +376,11 @@ void zlibStream::doTestStreamData(int input_flag, int output_flag, int compress_ // Check state of the verify action. if (fail_pos != DATABUFFER_SIZE || !bWasEOF) { - wxString msg(wxString::Format(_T("Wrong data item at pos %d (Org_val %d != Zlib_val %d), with compression level %d"), - fail_pos, GetDataBuffer()[fail_pos], last_value, compress_level)); + wxString msg; + msg << _T("Wrong data item at pos ") << fail_pos + << _T(" (Org_val ") << GetDataBuffer()[fail_pos] + << _T(" != Zlib_val ") << last_value + << _T("), with compression level ") << compress_level; CPPUNIT_FAIL(string(msg.mb_str())); } }