summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-rlc-lte.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-07-26 10:39:23 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-07-26 10:39:23 +0000
commit53ddabfe2e051104576697b9e371fa0f6a355754 (patch)
treed56815d1793dcfba3ae49104fa979e17c49d52ec /epan/dissectors/packet-rlc-lte.c
parent373fde85bdba9e201f7347e52f22dd54db99435c (diff)
downloadwireshark-53ddabfe2e051104576697b9e371fa0f6a355754.tar.gz
Align info column for AM/UM/TM PDUs
svn path=/trunk/; revision=50910
Diffstat (limited to 'epan/dissectors/packet-rlc-lte.c')
-rw-r--r--epan/dissectors/packet-rlc-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index 028f36083d..28e9f3fc29 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -1925,7 +1925,7 @@ static void dissect_rlc_lte_tm(tvbuff_t *tvb, packet_info *pinfo,
raw_tm_ti = proto_tree_add_item(tree, hf_rlc_lte_tm_data, tvb, offset, -1, ENC_NA);
if (!global_rlc_lte_call_rrc_for_ccch) {
write_pdu_label_and_info(top_ti, NULL, pinfo,
- " [%u-bytes]", tvb_length_remaining(tvb, offset));
+ " [%u-bytes]", tvb_length_remaining(tvb, offset));
}
if (global_rlc_lte_call_rrc_for_ccch) {
@@ -2074,7 +2074,7 @@ static void dissect_rlc_lte_um(tvbuff_t *tvb, packet_info *pinfo,
tap_info->sequenceNumber = (guint16)sn;
/* Show SN in info column */
- write_pdu_label_and_info(top_ti, um_header_ti, pinfo, " sn=%-4u", (guint16)sn);
+ write_pdu_label_and_info(top_ti, um_header_ti, pinfo, " sn=%-4u", (guint16)sn);
proto_item_set_len(um_header_ti, offset-start_offset);