summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-07-28 11:56:59 +0200
committerPatrick McHardy <kaber@trash.net>2010-07-28 11:56:59 +0200
commitb88edef0aad4a4c3bb134829938dc5742d42db4d (patch)
tree7d46a34ba5411e47e4012993f380c03ee176b180
parent203852085400ee4498af25ae0b4ef52266bbbc21 (diff)
ie: remove duplicate hex value from reject reason debug dump
dect_val2str() already prints the numerical value. Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r--src/s_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s_msg.c b/src/s_msg.c
index a235f8a..1cdfaf5 100644
--- a/src/s_msg.c
+++ b/src/s_msg.c
@@ -1057,7 +1057,7 @@ static void dect_sfmt_dump_reject_reason(const struct dect_ie_common *_ie)
struct dect_ie_reject_reason *ie = dect_ie_container(ie, _ie);
char buf[64];
- sfmt_debug("\treject reason: %s (%x)\n",
+ sfmt_debug("\treject reason: %s\n",
dect_val2str(dect_reject_reasons, buf, ie->reason),
ie->reason);
}