Fixed compiler warning.

This commit is contained in:
Ilia Alshanetsky 2003-10-28 04:22:12 +00:00
parent 4e283ed686
commit a4eebd74a6

View file

@ -281,7 +281,7 @@ static char *append_node(char * orig, BtRbNode *pNode, int indent)
static void print_node(BtRbNode *pNode)
{
char * str = append_node(0, pNode, 0);
printf(str);
printf("%s", str);
}
/*