Skip to content
Snippets Groups Projects
Commit cc38cf65 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Cast pointer to strcasecmp to AVL_CMP.

parent fa81f43f
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment