Finally! Got rid of compilation warning about converting pointer to int

in line 198.

svn path=/trunk/; revision=328
This commit is contained in:
Gilbert Ramirez 1999-06-23 20:09:58 +00:00
parent 98f51e741e
commit 3b0b8e40f4
1 changed files with 2 additions and 2 deletions

View File

@ -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 );