diff options
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index d7c66dc..7d992aa 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -108,14 +108,14 @@ static inline void rte_trace_in(unsigned int flag, struct proto *p, rte *e, char *msg) { if (p->debug & flag) - rte_trace(p, e, '<', msg); + rte_trace(p, e, '>', msg); } static inline void rte_trace_out(unsigned int flag, struct proto *p, rte *e, char *msg) { if (p->debug & flag) - rte_trace(p, e, '>', msg); + rte_trace(p, e, '<', msg); } static inline void |