aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-06-23 20:09:58 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-06-23 20:09:58 +0000
commit3b0b8e40f45c2b9ffdc3c6cbafa918cf38654711 (patch)
treed17d4fe5671e6721ad34a4bd8cb0cb628caaf3fa
parent98f51e741ef0dbca57471654fe5facc3b3a93631 (diff)
Finally! Got rid of compilation warning about converting pointer to int
in line 198. svn path=/trunk/; revision=328
-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 );