From 1231226ad9fe73cd28fbf6849d9d216cab5602b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 20 May 2017 11:42:44 +0200 Subject: [PATCH] WX: Use the proper format specifier --- Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp b/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp index b7f9a3fed1..28653c5b3f 100644 --- a/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp +++ b/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp @@ -232,7 +232,7 @@ void FilesystemPanel::PopulateFileSystemTreeWii() const if (file_system) { wxTreeItemId partition_root = m_tree_ctrl->AppendItem( - m_tree_ctrl->GetRootItem(), wxString::Format(_("Partition %i"), i), ICON_DISC); + m_tree_ctrl->GetRootItem(), wxString::Format(_("Partition %zu"), i), ICON_DISC); WiiPartition* const partition = new WiiPartition(std::move(file_system));