aboutsummaryrefslogtreecommitdiff
path: root/src/test_async.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-03-25 16:51:43 +0000
committerdrh <drh@noemail.net>2009-03-25 16:51:43 +0000
commit7c01f1d7544fa040ecea302b53dcb1561b267e9a (patch)
tree1762d2414081dc5b2919ad26a8c8580aee3c234e /src/test_async.c
parent357864ecb6413b21712b99d1970cf7e6fb105668 (diff)
downloadsqlite-7c01f1d7544fa040ecea302b53dcb1561b267e9a.tar.gz
sqlite-7c01f1d7544fa040ecea302b53dcb1561b267e9a.zip
Remove an unused parameter from sqlite3DequoteExpr. Fix another unrelated
and harmless compiler warning. (CVS 6386) FossilOrigin-Name: 8589b0fcc51a32188386e442655fd91f421ca7f8
Diffstat (limited to 'src/test_async.c')
-rw-r--r--src/test_async.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_async.c b/src/test_async.c
index 689fb5a26..035f46543 100644
--- a/src/test_async.c
+++ b/src/test_async.c
@@ -10,7 +10,7 @@
**
*************************************************************************
**
-** $Id: test_async.c,v 1.51 2009/03/25 14:24:42 drh Exp $
+** $Id: test_async.c,v 1.52 2009/03/25 16:51:43 drh Exp $
**
** This file contains an example implementation of an asynchronous IO
** backend for SQLite.
@@ -1308,11 +1308,11 @@ static void asyncDlError(sqlite3_vfs *pAsyncVfs, int nByte, char *zErrMsg){
sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData;
pVfs->xDlError(pVfs, nByte, zErrMsg);
}
-static void *asyncDlSym(
+static void (*asyncDlSym(
sqlite3_vfs *pAsyncVfs,
void *pHandle,
const char *zSymbol
-){
+))(void){
sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData;
return pVfs->xDlSym(pVfs, pHandle, zSymbol);
}