aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-01-31 20:38:58 +0100
committerMichael Mann <mmann78@netscape.net>2017-02-01 02:49:26 +0000
commite25c45866e275ed156b7c31303e27e1c8cfe48cc (patch)
tree5fed44bc5e30a29f8c1768bf23c02f6b328a14d5
parentfcf2eb4230cce739f5f91ca105df074ac54aa35d (diff)
ssl-utils: fix format specifies type 'void *' but the argument has type 'SslFlow *' (aka 'struct _SslFlow *') [-Wformat-pedantic]
Change-Id: Iec574db8c28d2e02136e6c4119e5688b21112299 Reviewed-on: https://code.wireshark.org/review/19889 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-ssl-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index b353d12a67..b5125f6828 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -4803,7 +4803,7 @@ ssl_add_record_info(gint proto, packet_info *pinfo, const guchar *data, gint dat
rec->flow = flow;
flow->byte_seq += data_len;
ssl_debug_printf("%s stored decrypted record seq=%d nxtseq=%d flow=%p\n",
- G_STRFUNC, rec->seq, rec->seq + data_len, flow);
+ G_STRFUNC, rec->seq, rec->seq + data_len, (void*)flow);
}
/* Remember decrypted records. */