From 28afc48ca5895d5db2667ad27ec29c0e40c656b9 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 28 Sep 2011 19:50:06 +0000 Subject: [PATCH] Eliminate an uninitialized variable warning Originally committed to SVN as r5649. --- aegisub/src/dialog_selection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/dialog_selection.cpp b/aegisub/src/dialog_selection.cpp index b77c46339..d91057faa 100644 --- a/aegisub/src/dialog_selection.cpp +++ b/aegisub/src/dialog_selection.cpp @@ -212,7 +212,7 @@ void DialogSelection::Process(wxCommandEvent&) { con->selectionController->GetSelectedSet(old_sel); wxString message; - size_t count; + size_t count = 0; switch (action) { case ACTION_SET: new_sel = matches;