From: Guilhem Lavaux Date: Thu, 1 Jul 1999 17:38:01 +0000 (+0000) Subject: * Changed %d by %u X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e93c800b85e1551a4a98c7c2f2db34347008b1ac * Changed %d by %u git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/typetest/typetest.cpp b/samples/typetest/typetest.cpp index bb345ae8c0..0859c51c88 100644 --- a/samples/typetest/typetest.cpp +++ b/samples/typetest/typetest.cpp @@ -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();