aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/gryphon
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-05 09:59:40 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-05 09:59:40 +0000
commit0498fbfa4f851e297429c3dd57bd8caec75008e9 (patch)
tree4ed5d7f054df78900ec46957b751373bf7f05559 /plugins/gryphon
parentf254dff262509f6b51bfc7258aaf32fdadbfe9e0 (diff)
Simply use %c for printing char.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34789 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/gryphon')
-rw-r--r--plugins/gryphon/packet-gryphon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gryphon/packet-gryphon.c b/plugins/gryphon/packet-gryphon.c
index 28e0a75326..4f139e3cf4 100644
--- a/plugins/gryphon/packet-gryphon.c
+++ b/plugins/gryphon/packet-gryphon.c
@@ -1594,7 +1594,7 @@ cmd_modresp(tvbuff_t *tvb, int offset, proto_tree *pt)
proto_tree_add_text(pt, tvb, offset, 1, "Response handle: %u",
resp_handle);
else if (dest)
- proto_tree_add_text(pt, tvb, offset, 1, "Response handles: all on channel %hhd", dest);
+ proto_tree_add_text(pt, tvb, offset, 1, "Response handles: all on channel %c", dest);
else
proto_tree_add_text(pt, tvb, offset, 1, "Response handles: all");
action = tvb_get_guint8(tvb, offset+1);