]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
simple print newline
authorJamal Hadi Salim <jhs@mojatatu.com>
Sun, 22 Dec 2013 12:50:09 +0000 (07:50 -0500)
committerStephen Hemminger <stephen@networkplumber.org>
Sat, 28 Dec 2013 18:57:34 +0000 (10:57 -0800)
attached.

cheers,
jamal
commit d7869e6167c3553e93e254940b0647032b40fed8
Author: Jamal Hadi Salim <jhs@mojatatu.com>
Date:   Sun Dec 22 07:46:28 2013 -0500

    print new line at the end for aesthetics

Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
tc/m_simple.c

index 02244406742eab613ae315120347781aa27d60bd..a8e1d6b24974bd39b58d7cc844645fe4d9616a8f 100644 (file)
@@ -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;
 }