Don't cast away constness (except in cases where an API makes that

impossible).

svn path=/trunk/; revision=50856
This commit is contained in:
Guy Harris 2013-07-23 23:42:14 +00:00
parent 8e22ded7f8
commit b524ecebd8
1 changed files with 5 additions and 2 deletions

View File

@ -2150,8 +2150,11 @@ static void string16_with_buffer_preallocated(tvbuff_t *tvb, proto_tree *t,
if (truncated) { *dp++ = '.'; *dp++ = '.'; *dp++ = '.'; }
*dp++ = '\0';
proto_tree_add_string_format(t, hf, tvb, offset, length, (gchar *)tvb_get_ptr(tvb, offset, length), "%s: %s",
proto_registrar_get_nth(hf) -> name, *s);
proto_tree_add_string_format(t, hf, tvb, offset, length,
(const gchar *)tvb_get_ptr(tvb, offset, length),
"%s: %s",
proto_registrar_get_nth(hf) -> name,
*s);
} else
proto_tree_add_item(t, hf_bytes, tvb, offset, length, byte_order);