* Changed %d by %u

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux 1999-07-01 17:38:01 +00:00
parent 53daeadab7
commit e93c800b85

View File

@ -233,7 +233,7 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event))
textCtrl.WriteText( tmp );
ui32 = data_input.Read32();
tmp.Printf( "Unsigned int32: %d\n", ui32 );
tmp.Printf( "Unsigned int32: %u\n", ui32 );
textCtrl.WriteText( tmp );
d = data_input.ReadDouble();