aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-03-28 21:16:19 -0700
committerGuy Harris <guy@alum.mit.edu>2017-03-29 04:16:52 +0000
commit79ba8c397653d99b4c52a5bbfa2f4d554067c6a4 (patch)
treecfb972d3fdb63d715f1a3b9a2415fccc0af0624c /epan/proto.c
parentb56bbb493afe6717d2e26c6e795205d7ae10254a (diff)
Print signed values with %d, not %u.
Change-Id: I1ad46df006976c052ff42baf6415e18b488b215f Reviewed-on: https://code.wireshark.org/review/20780 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/proto.c')
-rw-r--r--epan/proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/proto.c b/epan/proto.c
index bf223d4456..fcc4ab0bd8 100644
--- a/epan/proto.c
+++ b/epan/proto.c
@@ -4655,7 +4655,7 @@ proto_tree_add_node(proto_tree *tree, field_info *fi)
tfi = PNODE_FINFO(tnode);
if (tfi != NULL && (tfi->tree_type < 0 || tfi->tree_type >= num_tree_types)) {
REPORT_DISSECTOR_BUG(wmem_strdup_printf(wmem_packet_scope(),
- "\"%s\" - \"%s\" tfi->tree_type: %u invalid (%s:%u)",
+ "\"%s\" - \"%s\" tfi->tree_type: %d invalid (%s:%u)",
fi->hfinfo->name, fi->hfinfo->abbrev, tfi->tree_type, __FILE__, __LINE__));
/* XXX - is it safe to continue here? */
}