iliaa Mon Oct 27 23:22:13 2003 EDT
Modified files:
/php-src/ext/sqlite/libsqlite/src btree_rb.c
Log:
Fixed compiler warning.
Index: php-src/ext/sqlite/libsqlite/src/btree_rb.c
diff -u php-src/ext/sqlite/libsqlite/src/btree_rb.c:1.2
php-src/ext/sqlite/libsqlite/src/btree_rb.c:1.3
--- php-src/ext/sqlite/libsqlite/src/btree_rb.c:1.2 Fri Jun 6 18:44:56 2003
+++ php-src/ext/sqlite/libsqlite/src/btree_rb.c Mon Oct 27 23:22:12 2003
@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: btree_rb.c,v 1.2 2003/06/06 22:44:56 wez Exp $
+** $Id: btree_rb.c,v 1.3 2003/10/28 04:22:12 iliaa Exp $
**
** This file implements an in-core database using Red-Black balanced
** binary trees.
@@ -281,7 +281,7 @@
static void print_node(BtRbNode *pNode)
{
char * str = append_node(0, pNode, 0);
- printf(str);
+ printf("%s", str);
}
/*
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php