Commit 3197239d authored by Jiong Wang's avatar Jiong Wang Committed by Alexei Starovoitov

tools: bpftool: remove unnecessary 'if' to reduce indentation

It is obvious we could use 'else if' instead of start a new 'if' in the
touched code.
Signed-off-by: default avatarJiong Wang <jiong.wang@netronome.com>
Acked-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent c8745e07
...@@ -777,8 +777,7 @@ static int do_dump(int argc, char **argv) ...@@ -777,8 +777,7 @@ static int do_dump(int argc, char **argv)
if (json_output) if (json_output)
jsonw_null(json_wtr); jsonw_null(json_wtr);
} else { } else if (member_len == &info.jited_prog_len) {
if (member_len == &info.jited_prog_len) {
const char *name = NULL; const char *name = NULL;
if (info.ifindex) { if (info.ifindex) {
...@@ -798,7 +797,6 @@ static int do_dump(int argc, char **argv) ...@@ -798,7 +797,6 @@ static int do_dump(int argc, char **argv)
dump_xlated_plain(&dd, buf, *member_len, opcodes); dump_xlated_plain(&dd, buf, *member_len, opcodes);
kernel_syms_destroy(&dd); kernel_syms_destroy(&dd);
} }
}
free(buf); free(buf);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment