aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoreihrul <eihrul>2010-05-13 18:30:17 +0000
committereihrul <eihrul>2010-05-13 18:30:17 +0000
commit3ddbfb202d89675e1ba91c3cf053a0bd6ebbbf13 (patch)
treeac6c598b29ef2aef39fcbddd20e0f8bcdce98687
parent8f96fb8ea9ba50dcb2e21f88e87e80f1ca4a9d9c (diff)
downloadenet-3ddbfb202d89675e1ba91c3cf053a0bd6ebbbf13.tar.gz
enet-3ddbfb202d89675e1ba91c3cf053a0bd6ebbbf13.zip
wordo fix
-rw-r--r--peer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/peer.c b/peer.c
index 90987a5..f9d93e7 100644
--- a/peer.c
+++ b/peer.c
@@ -786,11 +786,11 @@ enet_peer_queue_incoming_command (ENetPeer * peer, const ENetProtocol * command,
{
case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
- enet_peer_dispatch_reliable_incoming_commands (peer, channel);
+ enet_peer_dispatch_incoming_reliable_commands (peer, channel);
break;
default:
- enet_peer_dispatch_unreliable_incoming_commands (peer, channel);
+ enet_peer_dispatch_incoming_unreliable_commands (peer, channel);
break;
}