mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
cast printf(%s) argument from void* to char*
This commit is contained in:
parent
7f79f57167
commit
c98892cb17
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ static void ravl_print( Avlnode *root, int depth )
|
|||
|
||||
for ( i = 0; i < depth; i++ )
|
||||
printf( " " );
|
||||
printf( "%s %d\n", root->avl_data, root->avl_bf );
|
||||
printf( "%s %d\n", (char *) root->avl_data, root->avl_bf );
|
||||
|
||||
ravl_print( root->avl_left, depth+1 );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue