This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed a compiler warning
tags/2021-05-28
Tom Poole
6 years ago
parent
380a102390
commit
50be983db5
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
}
Write
Preview
Loading…
Cancel
Save