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:
parent
ce2793ca2d
commit
4e04dad00f
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ public:
|
|||
}
|
||||
|
||||
if (bytesToRead > chunkEnd - position)
|
||||
bytesToRead = chunkEnd - position;
|
||||
bytesToRead = static_cast<int> (chunkEnd - position);
|
||||
}
|
||||
|
||||
fd_set readbits;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue