From 8b31b3c77861323d54a70cdd48d8819a7b41deaf Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Thu, 27 Sep 2018 00:27:21 +0200 Subject: [PATCH] syslog: fix switch statement indentation * syslog.c (SYS_FUNC(syslog)): Decrease indentation level of case clauses in the switch statement. --- syslog.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/syslog.c b/syslog.c index 3d1d3d26..626663ee 100644 --- a/syslog.c +++ b/syslog.c @@ -22,16 +22,16 @@ SYS_FUNC(syslog) } switch (type) { - case SYSLOG_ACTION_READ: - case SYSLOG_ACTION_READ_ALL: - case SYSLOG_ACTION_READ_CLEAR: - if (entering(tcp)) - return 0; - break; - default: - printaddr(tcp->u_arg[1]); - tprintf(", %" PRI_klu, tcp->u_arg[2]); - return RVAL_DECODED; + case SYSLOG_ACTION_READ: + case SYSLOG_ACTION_READ_ALL: + case SYSLOG_ACTION_READ_CLEAR: + if (entering(tcp)) + return 0; + break; + default: + printaddr(tcp->u_arg[1]); + tprintf(", %" PRI_klu, tcp->u_arg[2]); + return RVAL_DECODED; } /* bufp */ -- 2.40.0