diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-09-11 13:44:12 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-09-11 13:44:12 +0200 |
commit | b712702a98f40656fd7001be31d61b83bee79b97 (patch) | |
tree | 9ad1603bfdc5a258e450ba55049de5c960a850ec | |
parent | 6fbead63c4f2e94fe28491b29ab1b491ffd4261c (diff) |
netsniff-ng: Unindent goto label
Stick to the usual style of having goto labels not indented.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | netsniff-ng.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c index 03fab61..a9fbaff 100644 --- a/netsniff-ng.c +++ b/netsniff-ng.c @@ -623,8 +623,7 @@ static void read_pcap(struct ctx *ctx) } } - out: - +out: bug_on(gettimeofday(&end, NULL)); timersub(&end, &start, &diff); |