More constification.

svn path=/trunk/; revision=54758
This commit is contained in:
Guy Harris 2014-01-14 03:56:36 +00:00
parent c1b602584d
commit ccbebb0ee3
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ bencoded_string_length(tvbuff_t *tvb, guint *offset_ptr)
*/
static int
dissect_bencoded_string(tvbuff_t *tvb, packet_info _U_*pinfo, proto_tree *tree, guint offset, char **result, gboolean tohex, const char *label )
dissect_bencoded_string(tvbuff_t *tvb, packet_info _U_*pinfo, proto_tree *tree, guint offset, const char **result, gboolean tohex, const char *label )
{
guint string_len;
string_len = bencoded_string_length(tvb, &offset);