summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2009-02-11 17:51:01 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2009-02-11 17:51:01 +0000
commitb5ecf895ec2738ba258d51d6af19faab5f491cab (patch)
treec19a2ae47fa1686393491a1dcdb8f50e27f61b75
parent8c76aec3c91157a256e7c76334bcde30816576de (diff)
downloadwireshark-b5ecf895ec2738ba258d51d6af19faab5f491cab.tar.gz
Add missing closing parentheses.
svn path=/trunk/; revision=27428
-rw-r--r--epan/dissectors/packet-mac-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index acf4e8f334..2b0f12c2d2 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -34,7 +34,7 @@
/* Described in:
* 3GPP TS 36.321 Evolved Universal Terrestrial Radio Access (E-UTRA)
- Medium Access Control (MAC) protocol specification (Release 8)
+ * Medium Access Control (MAC) protocol specification (Release 8)
*/
@@ -1023,7 +1023,7 @@ void dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (p_mac_lte_info->is_predefined_data) {
proto_tree_add_item(mac_lte_tree, hf_mac_lte_predefined_pdu, tvb, offset, -1, FALSE);
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_append_fstr(pinfo->cinfo, COL_INFO, "Predefined data (%u bytes", tvb_length_remaining(tvb, offset));
+ col_append_fstr(pinfo->cinfo, COL_INFO, "Predefined data (%u bytes)", tvb_length_remaining(tvb, offset));
}
return;
}