mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
OSCReceiver: fixed a warning when compiling with Visual Studio for 32-bit.
This commit is contained in:
parent
39bba51d65
commit
b9bfc8c322
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ namespace
|
|||
if (input.getNumBytesRemaining() < 4)
|
||||
throw OSCFormatError ("OSC input stream exhausted while reading blob");
|
||||
|
||||
const int64 blobDataSize = input.readIntBigEndian();
|
||||
const size_t blobDataSize = input.readIntBigEndian();
|
||||
|
||||
if (input.getNumBytesRemaining() < (blobDataSize + 3) % 4)
|
||||
throw OSCFormatError ("OSC input stream exhausted before reaching end of blob");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue