diff options
author | drh <drh@noemail.net> | 2016-07-29 01:49:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-07-29 01:49:36 +0000 |
commit | e363d50db86a8f07829502e22e66a8c0b7716fb1 (patch) | |
tree | 7f6a865dbfea16ecc3d2398e2e8ed0ac26b418d5 /src/test_thread.c | |
parent | 99bbcc8287832d65fc954f29c5c340e1226292d5 (diff) | |
parent | c08556844e97b3b1c3ee19eca99e6cc98ff537ac (diff) | |
download | sqlite-e363d50db86a8f07829502e22e66a8c0b7716fb1.tar.gz sqlite-e363d50db86a8f07829502e22e66a8c0b7716fb1.zip |
Further refinement to the calling convention macros.
FossilOrigin-Name: 45588de385d2a721b3e9f04beb6c7b789dd27d42
Diffstat (limited to 'src/test_thread.c')
-rw-r--r-- | src/test_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_thread.c b/src/test_thread.c index d67b4be10..927fee1f5 100644 --- a/src/test_thread.c +++ b/src/test_thread.c @@ -280,7 +280,7 @@ static int SQLITE_TCLAPI sqlthread_open( const char *zFilename; sqlite3 *db; char zBuf[100]; - extern void Md5_Register(sqlite3*); + extern int Md5_Register(sqlite3 *, char **, const sqlite3_api_routines *); UNUSED_PARAMETER(clientData); UNUSED_PARAMETER(objc); @@ -303,7 +303,7 @@ static int SQLITE_TCLAPI sqlthread_open( } } #endif - Md5_Register(db); + Md5_Register(db, 0, 0); sqlite3_busy_handler(db, xBusy, 0); if( sqlite3TestMakePointerStr(interp, zBuf, db) ) return TCL_ERROR; |