aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ansi_a.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-12-17 13:03:34 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-12-17 13:03:34 +0000
commitbfc709b0d16bb3e9230435a339168ecb0acfc514 (patch)
tree8a6643bb796e6ad8b4727d3ee15ca7342e0a2933 /epan/dissectors/packet-ansi_a.c
parent18e3850d2499e2d76f14f92fdf062f60d65aebf1 (diff)
Use printf modifier %u for guint32 values.
svn path=/trunk/; revision=35211
Diffstat (limited to 'epan/dissectors/packet-ansi_a.c')
-rw-r--r--epan/dissectors/packet-ansi_a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ansi_a.c b/epan/dissectors/packet-ansi_a.c
index 608e882346..195aa4be8a 100644
--- a/epan/dissectors/packet-ansi_a.c
+++ b/epan/dissectors/packet-ansi_a.c
@@ -6862,11 +6862,11 @@ elem_rev_ms_info_recs(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len
str = ansi_a_so_int_to_str(value);
proto_tree_add_text(subtree2, tvb, curr_offset, 2,
- "Service Option: %s (%hu)",
+ "Service Option: %s (%u)",
str,
value);
- proto_item_append_text(item, " - (%hu) %s", value, str);
+ proto_item_append_text(item, " - (%u) %s", value, str);
i++;
curr_offset += 2;