aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_cmd.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-10-31 14:07:23 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-10-31 14:07:23 +0000
commitd0e33bc3c5559566c42f6269aa2bb8b8eccf2086 (patch)
treed7b4f6dc1a5c38796a74c5b14c34c2f5f6afa8d4 /epan/dissectors/packet-bthci_cmd.c
parent186a69dd831b34637a59bcbdc643b8678eac4ce7 (diff)
Fix some "format not a string literal and no format arguments" warnings.
svn path=/trunk/; revision=26646
Diffstat (limited to 'epan/dissectors/packet-bthci_cmd.c')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index ed4df5f233..755fa8a3bb 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -848,7 +848,7 @@ dissect_bthci_cmd_cod(int type, tvbuff_t *tvb, int offset, packet_info *pinfo _U
buf[strlen(buf)-1] = '\0'; /* skip last comma */
g_strlcat(buf, ")", sizeof(buf));
- proto_item_append_text(item, buf);
+ proto_item_append_text(item, "%s", buf);
}
else
{