From: Hallvard Furuseth Date: Mon, 16 Dec 2002 12:02:54 +0000 (+0000) Subject: Remove a useless function pointer cast. X-Git-Tag: NO_SLAP_OP_BLOCKS~671 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f77c8b567e04c69cecc0265fc3b86a01170b428a;p=openldap Remove a useless function pointer cast. --- diff --git a/libraries/libavl/testavl.c b/libraries/libavl/testavl.c index b76d1ba1d5..6de900c266 100644 --- a/libraries/libavl/testavl.c +++ b/libraries/libavl/testavl.c @@ -32,7 +32,7 @@ main( int argc, char **argv ) while ( fgets( command, sizeof( command ), stdin ) != NULL ) { switch( *command ) { case 'n': /* new tree */ - ( void ) avl_free( tree, (AVL_FREE) free ); + ( void ) avl_free( tree, free ); tree = NULL; break; case 'p': /* print */