Fix a minor bug with FT_BOOLEAN.

svn path=/trunk/; revision=13637
This commit is contained in:
Anders Broman 2005-03-06 20:54:01 +00:00
parent e23d044fb8
commit 2f4c6bf770
1 changed files with 2 additions and 2 deletions

View File

@ -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 }
},
};