Style fixes, no code changes

* desc.c (sys_io_getevents): Indentation fix.
* file.c (sys_xstat): Remove space after function name.
(decode_mknod): Indentation fix.
* net.c (printsockopt): Indentation fix.
* process.c (unalignctl_string): Indentation fix.
(sys_sched_getscheduler): Remove space after ! operator.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/file.c b/file.c
index cec7afd..69b3c84 100644
--- a/file.c
+++ b/file.c
@@ -1385,7 +1385,7 @@
 	} else {
 # ifdef _STAT64_VER
 		if (tcp->u_arg[0] == _STAT64_VER)
-			printstat64 (tcp, tcp->u_arg[2]);
+			printstat64(tcp, tcp->u_arg[2]);
 		else
 # endif
 		printstat(tcp, tcp->u_arg[2]);
@@ -1401,7 +1401,7 @@
 	else {
 # ifdef _STAT64_VER
 		if (tcp->u_arg[0] == _STAT64_VER)
-			printstat64 (tcp, tcp->u_arg[2]);
+			printstat64(tcp, tcp->u_arg[2]);
 		else
 # endif
 		printstat(tcp, tcp->u_arg[2]);
@@ -1419,7 +1419,7 @@
 	} else {
 # ifdef _STAT64_VER
 		if (tcp->u_arg[0] == _STAT64_VER)
-			printstat64 (tcp, tcp->u_arg[2]);
+			printstat64(tcp, tcp->u_arg[2]);
 		else
 # endif
 		printstat(tcp, tcp->u_arg[2]);
@@ -2125,15 +2125,16 @@
 		printpath(tcp, tcp->u_arg[offset]);
 		tprintf(", %s", sprintmode(mode));
 		switch (mode & S_IFMT) {
-		case S_IFCHR: case S_IFBLK:
+		case S_IFCHR:
+		case S_IFBLK:
 #ifdef LINUXSPARC
 			if (current_personality == 1)
-			tprintf(", makedev(%lu, %lu)",
+				tprintf(", makedev(%lu, %lu)",
 				(unsigned long) ((tcp->u_arg[offset + 2] >> 18) & 0x3fff),
 				(unsigned long) (tcp->u_arg[offset + 2] & 0x3ffff));
 			else
 #endif
-			tprintf(", makedev(%lu, %lu)",
+				tprintf(", makedev(%lu, %lu)",
 				(unsigned long) major(tcp->u_arg[offset + 2]),
 				(unsigned long) minor(tcp->u_arg[offset + 2]));
 			break;