From b5f2723ef9bb4137afb5d48dd4d25a321bd8c1ca Mon Sep 17 00:00:00 2001 From: hogliux Date: Fri, 17 Apr 2015 18:02:09 +0100 Subject: [PATCH] Fix LLVM warning in previous commit --- modules/juce_core/native/juce_mac_Network.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_mac_Network.mm b/modules/juce_core/native/juce_mac_Network.mm index 7754e0ba31..9562614a51 100644 --- a/modules/juce_core/native/juce_mac_Network.mm +++ b/modules/juce_core/native/juce_mac_Network.mm @@ -248,7 +248,7 @@ public: void didSendBodyData (NSInteger totalBytesWritten, NSInteger /*totalBytesExpected*/) { - latestTotalBytes = totalBytesWritten; + latestTotalBytes = static_cast (totalBytesWritten); } void finishedLoading()