1
0
Fork 0
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:
jules 2013-02-22 15:34:24 +00:00
parent f853636464
commit 54d3fd87a3
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -109,7 +109,7 @@ namespace TimeHelpers
if (numChars > 0)
return String (StringType (buffer),
StringType (buffer) + numChars);
StringType (buffer) + (int) numChars);
}
}