From 61028916c8c4f266e633c2b339f1c89db8d30459 Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Sat, 30 Dec 2017 16:43:06 -0600 Subject: [PATCH] main: fix warning --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 6156fe11c..7f6d9162c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -480,7 +480,7 @@ void AegisubApp::MacOpenFiles(wxArrayString const& filenames) { void AegisubApp::OpenFiles(wxArrayStringsAdapter filenames) { std::vector files; - for (int i = 0; i < filenames.GetCount(); ++i) + for (size_t i = 0; i < filenames.GetCount(); ++i) files.push_back(from_wx(filenames[i])); if (!files.empty()) frames[0]->context->project->LoadList(files);