aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iua.c
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2007-03-07 18:37:56 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2007-03-07 18:37:56 +0000
commit0204c1dc931d6252b77d1c79bf47979e1d3c0b70 (patch)
tree8258628c72c3af3370b79be930cbb0854437613c /epan/dissectors/packet-iua.c
parent99f6a7feef758dfac1657a1e86806b681921db32 (diff)
Fix a crash: You can not combine unsinged types like FT_INT32 and BASE_HEX.
svn path=/trunk/; revision=20995
Diffstat (limited to 'epan/dissectors/packet-iua.c')
-rw-r--r--epan/dissectors/packet-iua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-iua.c b/epan/dissectors/packet-iua.c
index 7777de564f..d62297a2e4 100644
--- a/epan/dissectors/packet-iua.c
+++ b/epan/dissectors/packet-iua.c
@@ -845,7 +845,7 @@ proto_register_iua(void)
/* Setup list of header fields */
static hf_register_info hf[] = {
- { &hf_int_interface_id, { "Integer interface identifier", "iua.int_interface_identifier", FT_INT32, BASE_HEX, NULL, 0x0, "", HFILL } },
+ { &hf_int_interface_id, { "Integer interface identifier", "iua.int_interface_identifier", FT_UINT32, BASE_HEX, NULL, 0x0, "", HFILL } },
{ &hf_text_interface_id, { "Text interface identifier", "iua.text_interface_identifier", FT_STRING, BASE_NONE, NULL, 0x0, "", HFILL } },
{ &hf_info_string, { "Info string", "iua.info_string", FT_STRING, BASE_NONE, NULL, 0x0, "", HFILL } },
{ &hf_dlci_zero_bit, { "Zero bit", "iua.dlci_zero_bit", FT_BOOLEAN, 8, NULL, ZERO_BIT_MASK, "", HFILL } },