From 0204c1dc931d6252b77d1c79bf47979e1d3c0b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20T=C3=BCxen?= Date: Wed, 7 Mar 2007 18:37:56 +0000 Subject: Fix a crash: You can not combine unsinged types like FT_INT32 and BASE_HEX. svn path=/trunk/; revision=20995 --- epan/dissectors/packet-iua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-iua.c') 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 } }, -- cgit v1.2.3