From 1f2f2e918e7c8eeb7c69b11b2b8992b41d012257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Fri, 5 Nov 2010 09:59:40 +0000 Subject: [PATCH] Simply use %c for printing char. svn path=/trunk/; revision=34789 --- plugins/gryphon/packet-gryphon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);