From: Jamal Hadi Salim Date: Sun, 22 Dec 2013 12:50:09 +0000 (-0500) Subject: simple print newline X-Git-Tag: v3.14.0~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=352f6f97bef6baefa21d973b914a67e7feac3d8f;p=thirdparty%2Fiproute2.git simple print newline attached. cheers, jamal commit d7869e6167c3553e93e254940b0647032b40fed8 Author: Jamal Hadi Salim Date: Sun Dec 22 07:46:28 2013 -0500 print new line at the end for aesthetics Signed-off-by: Jamal Hadi Salim --- diff --git a/tc/m_simple.c b/tc/m_simple.c index 022444067..a8e1d6b24 100644 --- a/tc/m_simple.c +++ b/tc/m_simple.c @@ -188,9 +188,9 @@ static int print_simple(struct action_util *au, FILE * f, struct rtattr *arg) if (tb[TCA_DEF_TM]) { struct tcf_t *tm = RTA_DATA(tb[TCA_DEF_TM]); print_tm(f, tm); - fprintf(f, "\n"); } } + fprintf(f, "\n"); return 0; }