Whitespace cleanups. No code changes.

* count.c: Place opening curly brace after if (),
  not on the next line. Almost all strace code alredy
  uses this style.
* desc.c: Likewise.
* file.c: Likewise.
* net.c: Likewise.
* pathtrace.c: Likewise.
* process.c: Likewise.
* quota.c: Likewise.
* signal.c: Likewise.
* strace.c: Likewise.
* syscall.c: Likewise.
* time.c: Likewise.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
diff --git a/syscall.c b/syscall.c
index d0ade8f..5203ef7 100644
--- a/syscall.c
+++ b/syscall.c
@@ -2419,8 +2419,7 @@
 	if (cflag) {
 		struct timeval t = tv;
 		int rc = count_syscall(tcp, &t);
-		if (cflag == CFLAG_ONLY_STATS)
-		{
+		if (cflag == CFLAG_ONLY_STATS) {
 			tcp->flags &= ~TCB_INSYSCALL;
 			return rc;
 		}