diff --git a/monitor/rfcomm.c b/monitor/rfcomm.c
index e90fc1c..fe3afb7 100644
--- a/monitor/rfcomm.c
+++ b/monitor/rfcomm.c
if (!l2cap_frame_get_be16(frame, &rpn.pm))
return false;
- print_field("%*cpm 0x%04x", indent, ' ', __bswap_16(rpn.pm));
+ print_field("%*cpm 0x%04x", indent, ' ', rpn.pm);
done:
return true;
return false;
print_field("%*cack_timer %d frame_size %d max_retrans %d credits %d",
- indent, ' ', pn.ack_timer, __bswap_16(pn.mtu),
- pn.max_retrans, pn.credits);
+ indent, ' ', pn.ack_timer, pn.mtu, pn.max_retrans,
+ pn.credits);
return true;
}