mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Fix signed/unsigned comparison warnings.
This commit is contained in:
@@ -76,7 +76,7 @@ bool SetLabelCommand::Apply(const CommandContext & context)
|
||||
for (auto lt : tracks.Any<LabelTrack>()) {
|
||||
const auto &labels = lt->GetLabels();
|
||||
const auto nLabels = labels.size();
|
||||
if( ii >= nLabels )
|
||||
if( ii >= (int)nLabels )
|
||||
ii -= nLabels;
|
||||
else {
|
||||
labelTrack = lt;
|
||||
|
||||
Reference in New Issue
Block a user