From 01d049bb82e0de1dd43a3f485d345ceb32874b44 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 31 Aug 2017 17:19:57 +0200 Subject: style --- extrace.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'extrace.c') diff --git a/extrace.c b/extrace.c index 47cbb5d..4d8c27c 100644 --- a/extrace.c +++ b/extrace.c @@ -51,9 +51,9 @@ #define _XOPEN_SOURCE 700 +#include #include #include -#include #include #include @@ -62,15 +62,15 @@ #include #include #include -#include #include +#include #include #include #include #include -#define max(x,y) ((y)<(x)?(x):(y)) -#define min(x,y) ((y)>(x)?(x):(y)) +#define max(x, y) ((y) < (x) ? (x) : (y)) +#define min(x, y) ((y) > (x) ? (x) : (y)) #define SEND_MESSAGE_LEN (NLMSG_LENGTH(sizeof (struct cn_msg) + \ sizeof (enum proc_cn_mcast_op))) @@ -133,7 +133,7 @@ pid_depth(pid_t pid) return d+1; } -static const char* +static const char * sig2name(int sig) { switch (sig) { @@ -275,7 +275,7 @@ handle_msg(struct cn_msg *cn_hdr) if (i == PID_DB_SIZE - 1) fprintf(stderr, "extrace: warning pid_db of " "size %d overflowed\n", PID_DB_SIZE); - + pid_db[i].pid = pid; pid_db[i].depth = d; pid_db[i].start = ev->timestamp_ns; @@ -354,7 +354,7 @@ handle_msg(struct cn_msg *cn_hdr) break; if (i == PID_DB_SIZE) return; - + pid_db[i].pid = 0; if (!flat) fprintf(output, "%*s", @@ -411,10 +411,10 @@ main(int argc, char *argv[]) } if (parent != 1 && optind != argc) { - usage: +usage: fprintf(stderr, "Usage: extrace [-deflq] [-o FILE] [-p PID|CMD...]\n"); exit(1); - } + } sk_nl = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR); if (sk_nl == -1) { @@ -436,7 +436,7 @@ main(int argc, char *argv[]) } nl_hdr = (struct nlmsghdr *)buff; cn_hdr = (struct cn_msg *)NLMSG_DATA(nl_hdr); - mcop_msg = (enum proc_cn_mcast_op*)&cn_hdr->data[0]; + mcop_msg = (enum proc_cn_mcast_op *)&cn_hdr->data[0]; memset(buff, 0, sizeof buff); *mcop_msg = PROC_CN_MCAST_LISTEN; -- cgit 1.4.1