]> granicus.if.org Git - php/commitdiff
Fixed compiler warning.
authorIlia Alshanetsky <iliaa@php.net>
Tue, 28 Oct 2003 04:22:12 +0000 (04:22 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Tue, 28 Oct 2003 04:22:12 +0000 (04:22 +0000)
ext/sqlite/libsqlite/src/btree_rb.c

index 39a842032af61676f102cb7435b5444e8b24a192..52b4bed0106c03f56436cf8c48fee264395d93b9 100644 (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);
 }
 
 /*