diff options
author | Tzvetomir Stoyanov (VMware) <[email protected]> | 2020-07-21 21:16:48 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2020-08-06 09:26:37 -0300 |
commit | d339a19a8784a4ee41d0a62d1b650d2dee6e05a0 (patch) | |
tree | 1f14ef862e54a1c88aa2461f629f1e9b68c67907 | |
parent | b796162bc4ee49d94b2cc59f98f6d32b5b517141 (diff) |
libtraceevent: Fixed broken indentation in parse_ip4_print_args()
Fixed the "break" indentation in a switch() inside
parse_ip4_print_args() static function.
Link: https://lore.kernel.org/r/CAM9d7cjboXGg+iMOA4BQo=E01iLGcJNB1MyPJ4doPP1XeGVJRA@mail.gmail.com
Link: https://lore.kernel.org/linux-trace-devel/[email protected]
Link: https://lore.kernel.org/linux-trace-devel/[email protected]
Suggested-by: Namhyung Kim <[email protected]>
Signed-off-by: Tzvetomir Stoyanov (VMware) <[email protected]>
Acked-by: Namhyung Kim <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: [email protected]
Link: http://lore.kernel.org/lkml/[email protected]
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/lib/traceevent/event-parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c index 2dcffcf70def..eb9868a7fcd7 100644 --- a/tools/lib/traceevent/event-parse.c +++ b/tools/lib/traceevent/event-parse.c @@ -4634,11 +4634,11 @@ static int parse_ip4_print_args(struct tep_handle *tep, else *reverse = true; ret++; - break; + break; case 'l': *reverse = true; ret++; - break; + break; case 'n': case 'b': ret++; |