Cast pointer to strcasecmp to AVL_CMP.

This commit is contained in:
Kurt Zeilenga 1999-03-16 21:55:00 +00:00
parent fa81f43f04
commit cc38cf6534

View File

@ -248,7 +248,7 @@ main( int argc, char **argv )
continue;
type = strdup( type );
if ( avl_insert( &avltypes, type, strcasecmp,
if ( avl_insert( &avltypes, type, (AVL_CMP) strcasecmp,
avl_dup_error ) != 0 ) {
free( type );
} else {