(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 926594b599
commit e8e22c99fd
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);
}