Skip to content

Commit d339a19

Browse files
tzstoyanovacmel
authored andcommitted
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]>
1 parent b796162 commit d339a19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/lib/traceevent/event-parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4634,11 +4634,11 @@ static int parse_ip4_print_args(struct tep_handle *tep,
46344634
else
46354635
*reverse = true;
46364636
ret++;
4637-
break;
4637+
break;
46384638
case 'l':
46394639
*reverse = true;
46404640
ret++;
4641-
break;
4641+
break;
46424642
case 'n':
46434643
case 'b':
46444644
ret++;

0 commit comments

Comments
 (0)