aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-02-14 05:09:56 +0000
committerJoão Valverde <j@v6e.pt>2016-02-14 23:47:43 +0000
commit5066cf86901f8849deb1a79dbe14fec675bb99da (patch)
tree56b46e899946f213b9c8a1fecb2da342f2503bc6 /plugins/mate
parentb846e487ff9d5913a433430383f0c317f0354026 (diff)
Fix format string warnings [-Wformat=]
Change-Id: I266c7d422f6ade965b42a4e2e8dc01966f8eb5f8 Reviewed-on: https://code.wireshark.org/review/13932 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'plugins/mate')
-rw-r--r--plugins/mate/mate_runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_runtime.c b/plugins/mate/mate_runtime.c
index 1c7f651cbc..d9455c99d1 100644
--- a/plugins/mate/mate_runtime.c
+++ b/plugins/mate/mate_runtime.c
@@ -210,7 +210,7 @@ static mate_gop* new_gop(mate_cfg_gop* cfg, mate_pdu* pdu, gchar* key) {
}
static void adopt_gop(mate_gog* gog, mate_gop* gop) {
- dbg_print (dbg_gog,5,dbg_facility,"adopt_gop: gog=%p gop=%p",gog,gop);
+ dbg_print (dbg_gog,5,dbg_facility,"adopt_gop: gog=%p gop=%p",(void*)gog,(void*)gop);
gop->gog = gog;
gop->next = NULL;