aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-05 08:04:24 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-05 08:04:24 +0000
commitb65147173d805883b493a2c3ae8497a7f4352c58 (patch)
treeb46c17a6e806f784ef0d2245b80c1e046a8f4f36 /plugins
parentf1452d585d55272b4ef90033d2c0c132929dcb45 (diff)
Fixed a printf modifier to remove a warning from clang.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34784 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-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 c1ca99cf99..28e0a75326 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 %hd", dest);
+ proto_tree_add_text(pt, tvb, offset, 1, "Response handles: all on channel %hhd", dest);
else
proto_tree_add_text(pt, tvb, offset, 1, "Response handles: all");
action = tvb_get_guint8(tvb, offset+1);