Remove a useless function pointer cast.

This commit is contained in:
Hallvard Furuseth 2002-12-16 12:02:54 +00:00
parent ae28aa57b2
commit f77c8b567e

View File

@ -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 */