From fae271c21c2c88d3b22f6c0880990220f9e7e5b6 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Sun, 25 Sep 2016 21:53:10 -0700 Subject: [PATCH] Fix assert in webview sample when using find functionality --- samples/webview/webview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/webview/webview.cpp b/samples/webview/webview.cpp index 810aaf5322..a3fe583a57 100644 --- a/samples/webview/webview.cpp +++ b/samples/webview/webview.cpp @@ -736,7 +736,7 @@ void WebFrame::OnFindText(wxCommandEvent& evt) { count++; } - wxLogMessage("Searching for:%s current match:%i/%i", m_findText.c_str(), count, m_findCount); + wxLogMessage("Searching for:%s current match:%li/%i", m_findText.c_str(), count, m_findCount); } /**