diff mbox series

[5/8] trace-cmd: Fixed broken indentation in parse_ip4_print_args()

Message ID 20200714103027.2477584-6-tz.stoyanov@gmail.com (mailing list archive)
State Superseded
Headers show
Series Few libtraceeevnt fixes, suggested Namhyung Kim | expand

Commit Message

Tzvetomir Stoyanov (VMware) July 14, 2020, 10:30 a.m. UTC
Fixed the "break" indentation in a switch() inside
parse_ip4_print_args() static function.

Suggested-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
 lib/traceevent/event-parse.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/lib/traceevent/event-parse.c b/lib/traceevent/event-parse.c
index 77c32492..4de9729c 100644
--- a/lib/traceevent/event-parse.c
+++ b/lib/traceevent/event-parse.c
@@ -4680,11 +4680,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++;