diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-06-23 20:09:58 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-06-23 20:09:58 +0000 |
commit | 3b0b8e40f45c2b9ffdc3c6cbafa918cf38654711 (patch) | |
tree | d17d4fe5671e6721ad34a4bd8cb0cb628caaf3fa /follow.c | |
parent | 98f51e741ef0dbca57471654fe5facc3b3a93631 (diff) | |
download | wireshark-3b0b8e40f45c2b9ffdc3c6cbafa918cf38654711.tar.gz wireshark-3b0b8e40f45c2b9ffdc3c6cbafa918cf38654711.tar.bz2 wireshark-3b0b8e40f45c2b9ffdc3c6cbafa918cf38654711.zip |
Finally! Got rid of compilation warning about converting pointer to int
in line 198.
svn path=/trunk/; revision=328
Diffstat (limited to 'follow.c')
-rw-r--r-- | follow.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ); |