summaryrefslogtreecommitdiff
path: root/plugins/gryphon/packet-gryphon.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-11-05 09:59:40 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-11-05 09:59:40 +0000
commit1f2f2e918e7c8eeb7c69b11b2b8992b41d012257 (patch)
tree4ed5d7f054df78900ec46957b751373bf7f05559 /plugins/gryphon/packet-gryphon.c
parentb9f01a15dbf05953e3d755c45b32fa0fb9e7ccb1 (diff)
downloadwireshark-1f2f2e918e7c8eeb7c69b11b2b8992b41d012257.tar.gz
Simply use %c for printing char.
svn path=/trunk/; revision=34789
Diffstat (limited to 'plugins/gryphon/packet-gryphon.c')
-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);