From a855f8ccca0495498afaaa11f0e8d80ee20c3be2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 3 Dec 2006 18:20:28 +0000 Subject: [PATCH] fixed gcc warning about size_t/src/common/dbgrid.cppi printf format spec mismatch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43769 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dbgrid.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/dbgrid.cpp b/src/common/dbgrid.cpp index 418d445b16..d8b13172a3 100644 --- a/src/common/dbgrid.cpp +++ b/src/common/dbgrid.cpp @@ -646,7 +646,8 @@ void wxDbGridTableBase::SetValueAsBool(int row, int col, bool value) void wxDbGridTableBase::ValidateRow(int row) { - wxLogDebug(wxT("ValidateRow(%i) currently on row (%i). Array count = %i"),row,m_row,m_keys.GetCount()); + wxLogDebug(wxT("ValidateRow(%i) currently on row (%i). Array count = %lu"), + row, m_row, (unsigned long)m_keys.GetCount()); if (row == m_row) return; -- 2.45.2