1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Fix warning on linux

This commit is contained in:
hogliux 2015-07-24 18:41:45 +01:00
parent ce2793ca2d
commit 4e04dad00f

View file

@ -159,7 +159,7 @@ public:
}
if (bytesToRead > chunkEnd - position)
bytesToRead = chunkEnd - position;
bytesToRead = static_cast<int> (chunkEnd - position);
}
fd_set readbits;