aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-01-30 21:31:45 +0000
committerGuy Harris <guy@alum.mit.edu>2013-01-30 21:31:45 +0000
commit47b8a34ebbd07cf905b0b9ce06d6ea4140564382 (patch)
tree6e96458499a9a50d196e6cc631ee0ead5c14af40
parentd29e1b560427a26144b3aee185dd0bbbc24ecd3d (diff)
GPOINTER_TO_INT() is the inverse of GINT_TO_POINTER().
svn path=/trunk/; revision=47374
-rw-r--r--ui/cli/tap-follow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/cli/tap-follow.c b/ui/cli/tap-follow.c
index 073b6b9f15..516b6bcd6c 100644
--- a/ui/cli/tap-follow.c
+++ b/ui/cli/tap-follow.c
@@ -352,7 +352,7 @@ followSslPacket(
)
{
follow_t * fp = contextp;
- SslPacketInfo * spip = p_get_proto_data(pip->fd, (size_t)datap);
+ SslPacketInfo * spip = p_get_proto_data(pip->fd, GPOINTER_TO_INT(datap));
SslDataInfo * sdip;
gint length;
tcp_stream_chunk sc;