]> granicus.if.org Git - strace/commit
Deindent syscall_enter by removing unnecessary braces. No code changes.
authorDenys Vlasenko <dvlasenk@redhat.com>
Thu, 23 Jun 2011 20:10:54 +0000 (22:10 +0200)
committerDenys Vlasenko <dvlasenk@redhat.com>
Thu, 23 Jun 2011 20:10:54 +0000 (22:10 +0200)
commitf5d099c27047eaa94fa80c02d92b09d1c0d2c063
tree78c43216ad51295633065ebfaff933936e8f2929
parent47247865eb108e5f5c9cb1f0c3f40fd97cdb0978
Deindent syscall_enter by removing unnecessary braces. No code changes.

syscall_enter has many long (>80 columns) lines.
It is aggravated by the fact that it has a lot of {} blocks
which are not necessary (the code is the same without them).
This patch removes {}s and deindents affected lines.
While at it, it indents ifdefs so that nesting is easier to track,
and adds a few spaces in the expressions, such as
"tcp->u_nargs*sizeof..." -> "tcp->u_nargs * sizeof...".
There is no actual changes to the code here.

* syscall.c (syscall_enter): Remove unnecessary {} blocks.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
syscall.c