This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Windows: Fixed a signed/unsigned comparison warning in juce_win32_Network.cpp
tags/2021-05-28
ed
6 years ago
parent
7caab2721e
commit
c55338b844
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/native/juce_win32_Network.cpp
+ 1
- 1
modules/juce_core/native/juce_win32_Network.cpp
View File
@@ -350,7 +350,7 @@ private:
int totalBytesSent = 0;
while (totalBytesSent < postData.getSize())
while (totalBytesSent <
(int)
postData.getSize())
{
auto bytesToSend = jmin (1024, (int) postData.getSize() - totalBytesSent);
DWORD bytesSent = 0;
Write
Preview
Loading…
Cancel
Save