Index: uspace/ipcc/ipcc.c
===================================================================
--- uspace/ipcc/ipcc.c	(revision b3f8fb771f871e7f2bb35ce9339717639e8f86d6)
+++ uspace/ipcc/ipcc.c	(revision 28af62fb801d7faf5b674e112fdb934a0710cd54)
@@ -76,5 +76,5 @@
 		default:
 			printf("Received message from %P: %X\n", phonehash,callid);
-			for (i=0; i < 1024; i++)
+			for (i = 0; i < 1024; i++)
 				if (!callids[i]) {
 					callids[i] = callid;
@@ -112,5 +112,5 @@
 
 	cnt = 0;
-	for (i=0;i < 50;i++) {
+	for (i = 0;i < 50; i++) {
 		if (callids[i]) {
 			printf("%d: %P\n", cnt, callids[i]);
@@ -128,5 +128,5 @@
 	cnt = c - '0' + 1;
 	
-	for (i=0;cnt;i++)
+	for (i = 0; cnt; i++)
 		if (callids[i])
 			cnt--;
@@ -213,6 +213,4 @@
 }
 
-
-
 int main(void)
 {
@@ -227,9 +225,8 @@
 	printf("***********IPC Tester***********\n");
 	printf("********************************\n");
-
 	
 	async_set_client_connection(client_connection);
 
-	for (i=TEST_START;i < TEST_START+10;i++) {
+	for (i = TEST_START; i < TEST_START + 10; i++) {
 		res = ipc_connect_to_me(PHONE_NS, i, 0, &phonead);
 		if (!res)
@@ -263,10 +260,13 @@
 			break;
 		case 'j':
+			printf("Entering infinite loop\n");
 			while (1)
 				;
+			break;
 		case 'p':
 			printf("Doing page fault\n");
 			*((char *)0) = 1;
 			printf("done\n");
+			break;
 		case 'u':
 			var1=*( (int *) ( ( (char *)(&var) ) + 1 ) );
