Skip to content

Commit

Permalink
Fixed compile warnings in sys_network.c
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Jan 19, 2012
1 parent b235949 commit 758fe14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/sys_network.c
Expand Up @@ -534,7 +534,7 @@ boolean N_ReceiveReliably(nodeid_t from)
TCPsocket sock = netNodes[from].sock;
char* packet = 0;
size_t size = 0;
bool needInflate = false;
boolean needInflate = false;
byte b;

// Read the header.
Expand Down Expand Up @@ -716,7 +716,7 @@ void N_SendReliably(void *data, size_t size, nodeid_t destination)
M_Free(compData);
}

transmitNow:
/*transmitNow:*/
// Send the data over the socket.
result = SDLNet_TCP_Send(node->sock, transmissionBuffer, transmissionSize);
if(result < 0 || (size_t) result != transmissionSize)
Expand Down

0 comments on commit 758fe14

Please sign in to comment.