aboutsummaryrefslogtreecommitdiffstats
path: root/follow.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-06-23 20:09:58 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-06-23 20:09:58 +0000
commit3d4e624517ac32df4e6c5518f44953ffff0c8155 (patch)
treed17d4fe5671e6721ad34a4bd8cb0cb628caaf3fa /follow.c
parentb5207f54c2a315987037059ecdbd9824d8d211fb (diff)
Finally! Got rid of compilation warning about converting pointer to int
in line 198. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@328 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'follow.c')
-rw-r--r--follow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/follow.c b/follow.c
index 4efda54d6c..4957485f90 100644
--- a/follow.c
+++ b/follow.c
@@ -1,6 +1,6 @@
/* follow.c
*
- * $Id: follow.c,v 1.6 1999/03/23 20:25:49 deniel Exp $
+ * $Id: follow.c,v 1.7 1999/06/23 20:09:58 gram Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -195,7 +195,7 @@ check_fragments( int index ) {
if( prev ) {
prev->next = current->next;
} else {
- src[index] = current->next;
+ src[index] = GPOINTER_TO_INT(current->next);
}
free( current->data );
free( current );