Oops, got <' and
>' markers in trace output reversed.
This commit is contained in:
parent
cfd46ee4c5
commit
b0a47440e3
1 changed files with 2 additions and 2 deletions
|
@ -108,14 +108,14 @@ static inline void
|
||||||
rte_trace_in(unsigned int flag, struct proto *p, rte *e, char *msg)
|
rte_trace_in(unsigned int flag, struct proto *p, rte *e, char *msg)
|
||||||
{
|
{
|
||||||
if (p->debug & flag)
|
if (p->debug & flag)
|
||||||
rte_trace(p, e, '<', msg);
|
rte_trace(p, e, '>', msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
rte_trace_out(unsigned int flag, struct proto *p, rte *e, char *msg)
|
rte_trace_out(unsigned int flag, struct proto *p, rte *e, char *msg)
|
||||||
{
|
{
|
||||||
if (p->debug & flag)
|
if (p->debug & flag)
|
||||||
rte_trace(p, e, '>', msg);
|
rte_trace(p, e, '<', msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
|
|
Loading…
Reference in a new issue