Browse Source

Windows: Fixed a signed/unsigned comparison warning in juce_win32_Network.cpp

tags/2021-05-28
ed 6 years ago
parent
commit
c55338b844
1 changed files with 1 additions and 1 deletions
  1. +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;


Loading…
Cancel
Save