mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for win32 build breakage.
This commit is contained in:
parent
f853636464
commit
54d3fd87a3
2 changed files with 2 additions and 2 deletions
|
|
@ -252,7 +252,7 @@ public:
|
|||
{
|
||||
JUCE_DS_LOG ("closing output: " + name);
|
||||
HRESULT hr = pOutputBuffer->Stop();
|
||||
JUCE_DS_LOG_ERROR (hr);
|
||||
JUCE_DS_LOG_ERROR (hr); (void) hr;
|
||||
|
||||
pOutputBuffer->Release();
|
||||
pOutputBuffer = nullptr;
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ namespace TimeHelpers
|
|||
|
||||
if (numChars > 0)
|
||||
return String (StringType (buffer),
|
||||
StringType (buffer) + numChars);
|
||||
StringType (buffer) + (int) numChars);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue