summaryrefslogtreecommitdiff
path: root/net.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-02-27 13:56:59 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-02-27 13:56:59 +0100
commitb237b1b20da4ff40efb919f9d4a6458a05f375ca (patch)
tree479c7e541129bcfe260daf5f2c97465bf9a7ffde /net.c
parente83e157021177930b64ec4aa4983bbe13b39e91b (diff)
downloadstrace-b237b1b20da4ff40efb919f9d4a6458a05f375ca.tar.gz
strace-b237b1b20da4ff40efb919f9d4a6458a05f375ca.tar.bz2
strace-b237b1b20da4ff40efb919f9d4a6458a05f375ca.tar.xz
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>
Diffstat (limited to 'net.c')
-rw-r--r--net.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net.c b/net.c
index 888077a..266d9c1 100644
--- a/net.c
+++ b/net.c
@@ -2106,10 +2106,10 @@ printsockopt(struct tcb *tcp, int level, int name, long addr, int len)
printxval(sockrawoptions, name, "RAW_???");
switch (name) {
#if defined(ICMP_FILTER)
- case ICMP_FILTER:
- tprints(", ");
- printicmpfilter(tcp, addr);
- return 0;
+ case ICMP_FILTER:
+ tprints(", ");
+ printicmpfilter(tcp, addr);
+ return 0;
#endif
}
break;