# HG changeset patch
# User antonc27 <antonc27@mail.ru>
# Date 1439244930 -7200
# Node ID 553899c1ff7873e00ff89e7640b7cd8a4c4fceec
# Parent  2953f858a196ba26ddb36be25647b38e78a68745
- Small warning fix

diff -r 2953f858a196 -r 553899c1ff78 project_files/HedgewarsMobile/Classes/EngineProtocolNetwork.m
--- a/project_files/HedgewarsMobile/Classes/EngineProtocolNetwork.m	Mon Aug 10 22:50:34 2015 +0200
+++ b/project_files/HedgewarsMobile/Classes/EngineProtocolNetwork.m	Tue Aug 11 00:15:30 2015 +0200
@@ -240,7 +240,7 @@
 
     // Open a connection with the IP provided (listen on the host's port)
     if (!(sd = SDLNet_TCP_Open(&ip)) && !clientQuit) {
-        DLog(@"SDLNet_TCP_Open: %s %\n", SDLNet_GetError(), self.enginePort);
+        DLog(@"SDLNet_TCP_Open: %s %d\n", SDLNet_GetError(), self.enginePort);
         clientQuit = YES;
     }