From f77c8b567e04c69cecc0265fc3b86a01170b428a Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Mon, 16 Dec 2002 12:02:54 +0000 Subject: [PATCH] Remove a useless function pointer cast. --- libraries/libavl/testavl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5