mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 08:33:36 +02:00
Fix a few new compiler warnings.
This commit is contained in:
@@ -106,7 +106,7 @@ wxString FileSelector(const wxChar *title,
|
||||
{
|
||||
if (filters[n].Contains(defaultExtension))
|
||||
{
|
||||
filterIndex = n;
|
||||
filterIndex = (int)n; // Convert to int to avoid compiler warning, because we probably do not need many tens of thousands of filters.
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user