Debugger: Format search hits with proper specifier

This commit is contained in:
Ty Lamontagne 2021-11-21 15:54:41 -05:00 committed by lightningterror
parent d421fc6e6f
commit f36d5fdbdf
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void CtrlMemSearch::onSearchFinished(wxCommandEvent& evt)
m_searchResultsMutex.lock();
lblSearchHits->SetLabelText(wxString::Format(L"Hits: %d", m_searchResults.size()));
lblSearchHits->SetLabelText(wxString::Format(L"Hits: %zu", m_searchResults.size()));
// Enable the buttons only if we have results
// -1 indicates we haven't jumped to a result yet