(svn r20548) -Codechange: rename some variables giving them slightly more meaningful names

This commit is contained in:
rubidium
2010-08-18 21:30:38 +00:00
parent 27e45d96a4
commit 3ed6ca0aed
3 changed files with 9 additions and 9 deletions

View File

@@ -1612,7 +1612,7 @@ void NetworkServer_ReadPackets(NetworkClientSocket *cs)
static void NetworkHandleCommandQueue(NetworkClientSocket *cs)
{
CommandPacket *cp;
while ((cp = cs->command_queue.Pop()) != NULL) {
while ((cp = cs->outgoing_queue.Pop()) != NULL) {
SEND_COMMAND(PACKET_SERVER_COMMAND)(cs, cp);
free(cp);
}