CID 1161: Not really used variable

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36725 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
jmayer 2011-04-19 21:20:15 +00:00
parent 0ae16226cf
commit 1035ed827b
1 changed files with 1 additions and 4 deletions

View File

@ -220,10 +220,7 @@ int
dissect_pn_user_data(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, guint32 length, const char *text)
{
proto_item *item;
item = proto_tree_add_string_format(tree, hf_pn_user_data, tvb, offset, length, "data",
proto_tree_add_string_format(tree, hf_pn_user_data, tvb, offset, length, "data",
"%s: %d bytes", text, length);
return offset + length;