1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Fixed a compiler warning in some OSC code

This commit is contained in:
jules 2015-12-22 09:04:32 +00:00
parent 6cceb10417
commit ae80e2b90d

View file

@ -416,7 +416,7 @@ struct OSCReceiver::Pimpl : private Thread,
catch (OSCFormatError)
{
if (formatErrorHandler != nullptr)
formatErrorHandler (data, dataSize);
formatErrorHandler (data, (int) dataSize);
}
}