aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-03-06 20:54:01 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-03-06 20:54:01 +0000
commit2f4c6bf770a092db9e9eaa98e2d3738bd3eb1081 (patch)
tree550a761592b6d409ce1974ee82d753abdc89b4fd /epan
parente23d044fb806cd82caff40d681583cb73132933f (diff)
Fix a minor bug with FT_BOOLEAN.
svn path=/trunk/; revision=13637
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-amr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-amr.c b/epan/dissectors/packet-amr.c
index d6ee14f601..0ad16a05f4 100644
--- a/epan/dissectors/packet-amr.c
+++ b/epan/dissectors/packet-amr.c
@@ -207,7 +207,7 @@ proto_register_amr(void)
},
{ &hf_amr_toc_f,
{ "F bit", "amr.toc.f",
- FT_BOOLEAN, BASE_DEC, TFS(&toc_f_bit_vals), 0x80,
+ FT_BOOLEAN, 8, TFS(&toc_f_bit_vals), 0x80,
"F bit", HFILL }
},
{ &hf_amr_toc_ft,
@@ -217,7 +217,7 @@ proto_register_amr(void)
},
{ &hf_amr_toc_q,
{ "Q bit", "amr.toc.q",
- FT_BOOLEAN, BASE_DEC, TFS(&toc_q_bit_vals), 0x04,
+ FT_BOOLEAN, 8, TFS(&toc_q_bit_vals), 0x04,
"Frame quality indicator bit", HFILL }
},
};