mpeg_pat.cur_next_ind looks like a Boolean; make it one. That also

fixes checkapi warnings about its value_string not being properly
terminated (by replacing it with a true_false_string).

svn path=/trunk/; revision=40975
This commit is contained in:
Guy Harris 2012-02-11 20:35:03 +00:00
parent 74f2ef4f76
commit cd706946e5
1 changed files with 3 additions and 4 deletions

View File

@ -57,10 +57,9 @@ static gint ett_mpeg_pat_prog = -1;
#define MPEG_PAT_PROGRAM_RESERVED_MASK 0xE000
#define MPEG_PAT_PROGRAM_MAP_PID_MASK 0x1FFF
static const value_string mpeg_pat_cur_next_vals[] = {
static const true_false_string mpeg_pat_cur_next_vals = {
{ 0x0, "Not yet applicable" },
{ 0x1, "Currently applicable" },
"Currently applicable", "Not yet applicable"
};
@ -153,7 +152,7 @@ proto_register_mpeg_pat(void)
{ &hf_mpeg_pat_current_next_indicator, {
"Current/Next Indicator", "mpeg_pat.cur_next_ind",
FT_UINT8, BASE_HEX, VALS(mpeg_pat_cur_next_vals), MPEG_PAT_CURRENT_NEXT_INDICATOR_MASK, NULL, HFILL
FT_BOOLEAN, 8, TFS(&mpeg_pat_cur_next_vals), MPEG_PAT_CURRENT_NEXT_INDICATOR_MASK, NULL, HFILL
} },
{ &hf_mpeg_pat_section_number, {