dect
/
libdect
Archived
13
0
Fork 0

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>
This commit is contained in:
Patrick McHardy 2010-07-28 11:56:59 +02:00
parent 2038520854
commit b88edef0aa
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}