forked from mia/Aegisub
Eliminate an uninitialized variable warning
Originally committed to SVN as r5649.
This commit is contained in:
parent
d419c7a447
commit
28afc48ca5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue