network.c
changeset 2952 6a26eeda9679
parent 2944 7c392e7b51c6
child 3437 2768c018e5f7
--- a/network.c	Wed Feb 01 06:32:03 2006 +0000
+++ b/network.c	Wed Feb 01 07:36:15 2006 +0000
@@ -237,7 +237,7 @@
 		return;
 	}
 
-	switch(res) {
+	switch (res) {
 		case NETWORK_RECV_STATUS_DESYNC: errorno = NETWORK_ERROR_DESYNC; break;
 		case NETWORK_RECV_STATUS_SAVEGAME: errorno = NETWORK_ERROR_SAVEGAME_FAILED; break;
 		default: errorno = NETWORK_ERROR_GENERAL;
@@ -1168,7 +1168,7 @@
 	// Just a safety check, to be removed in the future.
 	// Make sure that no older command appears towards the end of the queue
 	// In that case we missed executing it. This will never happen.
-	for(cp = _local_command_queue; cp; cp = cp->next) {
+	for (cp = _local_command_queue; cp; cp = cp->next) {
 		assert(_frame_counter < cp->frame);
 	}