aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/gryphon
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-11-05 08:04:24 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-11-05 08:04:24 +0000
commit75c2052a01c32e2bc18aad4b66e9e35f4c06fb12 (patch)
treeb46c17a6e806f784ef0d2245b80c1e046a8f4f36 /plugins/gryphon
parent8722e8576bfc76bf46a9374bc1625ee2ba47290e (diff)
Fixed a printf modifier to remove a warning from clang.
svn path=/trunk/; revision=34784
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 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);