Browse Source

Fixed a compiler warning

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
50be983db5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp

+ 1
- 1
modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp View File

@@ -51,7 +51,7 @@ public:
auto numRead = source.read (dest, (size_t) numBytes);
if (bytesRead != nullptr)
*bytesRead = numRead;
*bytesRead = (ULONG) numRead;
return (numRead == (int) numBytes) ? S_OK : S_FALSE;
}


Loading…
Cancel
Save