Browse Source

Fixed a minor compiler warning.

tags/2021-05-28
jules 10 years ago
parent
commit
68fa0eaa19
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp

+ 2
- 3
modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp View File

@@ -426,9 +426,8 @@ struct VBRTagData
if (flags & 4)
{
if (toc != nullptr)
for (int i = 0; i < 100; ++i)
toc[i] = data[i];
for (int i = 0; i < 100; ++i)
toc[i] = data[i];
data += 100;
}


Loading…
Cancel
Save