summaryrefslogtreecommitdiffstats
path: root/lib/route/qdisc/prio.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-07-26 13:06:59 (GMT)
committerThomas Haller <thaller@redhat.com>2014-07-27 08:57:31 (GMT)
commitfc249f81c789c59ff7d82ca9c6ee2ef0ac05b6e4 (patch)
tree8c2d2350ce1c1b13dbf176c0149bd773b758a050 /lib/route/qdisc/prio.c
parent9dc6e6da90016a33929f262bea0187396e1a061b (diff)
downloadlibnl-fc249f81c789c59ff7d82ca9c6ee2ef0ac05b6e4.zip
libnl-fc249f81c789c59ff7d82ca9c6ee2ef0ac05b6e4.tar.gz
libnl-fc249f81c789c59ff7d82ca9c6ee2ef0ac05b6e4.tar.bz2
style: require comma after __ADD() macro
$ sed -i 's/^\([\t ]\+\<__ADD\> \?([^)]\+)\) *$/\1,/' `git grep -w -l __ADD` Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'lib/route/qdisc/prio.c')
-rw-r--r--lib/route/qdisc/prio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/route/qdisc/prio.c b/lib/route/qdisc/prio.c
index 54a46f0..5a21729 100644
--- a/lib/route/qdisc/prio.c
+++ b/lib/route/qdisc/prio.c
@@ -215,12 +215,12 @@ uint8_t *rtnl_qdisc_prio_get_priomap(struct rtnl_qdisc *qdisc)
*/
static const struct trans_tbl prios[] = {
- __ADD(TC_PRIO_BESTEFFORT,besteffort)
- __ADD(TC_PRIO_FILLER,filler)
- __ADD(TC_PRIO_BULK,bulk)
- __ADD(TC_PRIO_INTERACTIVE_BULK,interactive_bulk)
- __ADD(TC_PRIO_INTERACTIVE,interactive)
- __ADD(TC_PRIO_CONTROL,control)
+ __ADD(TC_PRIO_BESTEFFORT,besteffort),
+ __ADD(TC_PRIO_FILLER,filler),
+ __ADD(TC_PRIO_BULK,bulk),
+ __ADD(TC_PRIO_INTERACTIVE_BULK,interactive_bulk),
+ __ADD(TC_PRIO_INTERACTIVE,interactive),
+ __ADD(TC_PRIO_CONTROL,control),
};
/**