Compile fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2006-10-23 15:39:54 +00:00
parent 1fbab161c6
commit 5677ce32f2

View File

@@ -170,7 +170,7 @@ void VsnprintfTestCase::N()
{ {
int nchar; int nchar;
wxSnprintf(buf, MAX_TEST_LEN, "%d %s%n\n", 3, "bears", &nchar); wxSnprintf(buf, MAX_TEST_LEN, _T("%d %s%n\n"), 3, _T("bears"), &nchar);
CPPUNIT_ASSERT_EQUAL( 7, nchar ); CPPUNIT_ASSERT_EQUAL( 7, nchar );
} }