Add missing closing parentheses.

svn path=/trunk/; revision=27428
This commit is contained in:
Martin Mathieson 2009-02-11 17:51:01 +00:00
parent 8c76aec3c9
commit b5ecf895ec
1 changed files with 2 additions and 2 deletions

View File

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