From: Ilia Alshanetsky Date: Tue, 28 Oct 2003 04:22:12 +0000 (+0000) Subject: Fixed compiler warning. X-Git-Tag: RELEASE_2_0_0RC1~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4eebd74a6ef2ef9004a3463a56ee67d132bd5d0;p=php Fixed compiler warning. --- diff --git a/ext/sqlite/libsqlite/src/btree_rb.c b/ext/sqlite/libsqlite/src/btree_rb.c index 39a842032a..52b4bed010 100644 --- a/ext/sqlite/libsqlite/src/btree_rb.c +++ b/ext/sqlite/libsqlite/src/btree_rb.c @@ -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); } /*