diff options
author | Anders Broman <anders.broman@ericsson.com> | 2011-09-27 12:04:29 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2011-09-27 12:04:29 +0000 |
commit | 00e46951ad2d2a4e4f6f703f4e2150478f7df53d (patch) | |
tree | bdf8ef520c67daad4e1da2d82d71b90601fc0851 /epan/proto.h | |
parent | c33cad6b43556b0ec1d0523ccd5e8ba0c4cfb34f (diff) | |
download | wireshark-00e46951ad2d2a4e4f6f703f4e2150478f7df53d.tar.gz wireshark-00e46951ad2d2a4e4f6f703f4e2150478f7df53d.tar.bz2 wireshark-00e46951ad2d2a4e4f6f703f4e2150478f7df53d.zip |
In proto_tree_add_bits... use const guint encoding to be consistent with proto_tree_add_item().
svn path=/trunk/; revision=39163
Diffstat (limited to 'epan/proto.h')
-rw-r--r-- | epan/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/proto.h b/epan/proto.h index 98ef9c522f..799c770bd2 100644 --- a/epan/proto.h +++ b/epan/proto.h @@ -1842,7 +1842,7 @@ proto_tree_add_bitmask_text(proto_tree *tree, tvbuff_t *tvb, const guint offset, @param little_endian big or little endian byte representation @return the newly created item */ extern proto_item * -proto_tree_add_bits_item(proto_tree *tree, const int hf_index, tvbuff_t *tvb, const gint bit_offset, const gint no_of_bits, const gboolean little_endian); +proto_tree_add_bits_item(proto_tree *tree, const int hf_index, tvbuff_t *tvb, const gint bit_offset, const gint no_of_bits, const guint encoding); /** Add bits to a proto_tree, using the text label registered to that item. The item is extracted from the tvbuff handed to it. @@ -1855,7 +1855,7 @@ proto_tree_add_bits_item(proto_tree *tree, const int hf_index, tvbuff_t *tvb, co @param little_endian big or little endian byte representation @return the newly created item */ extern proto_item * -proto_tree_add_bits_ret_val(proto_tree *tree, const int hf_index, tvbuff_t *tvb, const gint bit_offset, const gint no_of_bits, guint64 *return_value, const gboolean little_endian); +proto_tree_add_bits_ret_val(proto_tree *tree, const int hf_index, tvbuff_t *tvb, const gint bit_offset, const gint no_of_bits, guint64 *return_value, const guint encoding); /** Add bits for a FT_UINT8, FT_UINT16, FT_UINT24 or FT_UINT32 header field to a proto_tree, with the format generating the |