summaryrefslogtreecommitdiff
path: root/ext/sqlite/libsqlite/src/table.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-01-08 14:25:01 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-01-08 14:25:01 +0000
commita4ea8eb44ec63e407007abea957221e92a081a31 (patch)
tree23566b703ee020fcee70beb3bc38d3e11c37e14c /ext/sqlite/libsqlite/src/table.c
parent2cf3cb6407aa108f21149782245c61e7e393ec59 (diff)
downloadphp-git-a4ea8eb44ec63e407007abea957221e92a081a31.tar.gz
Upgrade bundled libsqlite to 2.8.9
Diffstat (limited to 'ext/sqlite/libsqlite/src/table.c')
-rw-r--r--ext/sqlite/libsqlite/src/table.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/sqlite/libsqlite/src/table.c b/ext/sqlite/libsqlite/src/table.c
index e0965cb30b..dc2d9fa7e5 100644
--- a/ext/sqlite/libsqlite/src/table.c
+++ b/ext/sqlite/libsqlite/src/table.c
@@ -85,7 +85,8 @@ static int sqlite_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
}
}else if( p->nColumn!=nCol ){
sqliteSetString(&p->zErrMsg,
- "sqlite_get_table() called with two or more incompatible queries", 0);
+ "sqlite_get_table() called with two or more incompatible queries",
+ (char*)0);
p->rc = SQLITE_ERROR;
return 1;
}