avoid warning about shadowed variable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2014-04-06 19:30:22 +00:00
parent f771a15d9e
commit 23aa1404be

View File

@@ -143,8 +143,8 @@ wxFileSystemWatcherBase::AddAny(const wxFileName& path,
}
else
{
wxFSWatchInfo& watch = it->second;
int count = watch.IncRef();
wxFSWatchInfo& watch2 = it->second;
int count = watch2.IncRef();
wxLogTrace(wxTRACE_FSWATCHER,
"'%s' is now watched %d times", canonical, count);
}