aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-02-11 20:36:35 +0000
committerGuy Harris <guy@alum.mit.edu>2012-02-11 20:36:35 +0000
commit9f116d50cb01e883a6d7fba535ca201b8a19c896 (patch)
treee4af40b10c523109247163cc157b2dee53427efc
parentcd706946e582c64c014cbdb4026c14df5dbfaf55 (diff)
Get rid of checkapi warning about %hh.
svn path=/trunk/; revision=40976
-rw-r--r--epan/dissectors/packet-mpeg-sect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mpeg-sect.c b/epan/dissectors/packet-mpeg-sect.c
index 8e188f7d7b..cf57050065 100644
--- a/epan/dissectors/packet-mpeg-sect.c
+++ b/epan/dissectors/packet-mpeg-sect.c
@@ -162,12 +162,12 @@ dissect_mpeg_sect(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
set_actual_length(tvb, section_length + 3);
col_set_str(pinfo->cinfo, COL_PROTOCOL, "MPEG SECT");
- col_add_fstr(pinfo->cinfo, COL_INFO, "Table ID 0x%hhX", table_id);
+ col_add_fstr(pinfo->cinfo, COL_INFO, "Table ID 0x%08x", table_id);
ti = proto_tree_add_item(tree, proto_mpeg_sect, tvb, offset, -1, ENC_NA);
mpeg_sect_tree = proto_item_add_subtree(ti, ett_mpeg_sect);
- proto_item_append_text(ti, " Table_ID=0x%hhx", table_id);
+ proto_item_append_text(ti, " Table_ID=0x%08x", table_id);
if (syntax_indicator) {
/* Pass everything but the CRC */