diff options
author | 2015-02-20 06:51:43 +0100 | |
---|---|---|
committer | 2015-02-20 06:51:43 +0100 | |
commit | eb54c7d8f3eb5bdd2f3d1a616ca0282398665e47 (patch) | |
tree | d1880e4f345eb72576c359487a4756a2230c9304 /3rdparty/sqlite3/sqlite3.c | |
parent | ba2c0040e96f22876f3b1c473bc1785b54d2fe0c (diff) |
this should help compile on old OSX (nw)
Diffstat (limited to '3rdparty/sqlite3/sqlite3.c')
-rw-r--r-- | 3rdparty/sqlite3/sqlite3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/3rdparty/sqlite3/sqlite3.c b/3rdparty/sqlite3/sqlite3.c index cf858adc5de..bc9bd1eeaa1 100644 --- a/3rdparty/sqlite3/sqlite3.c +++ b/3rdparty/sqlite3/sqlite3.c @@ -22182,6 +22182,7 @@ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ assert( rc!=WAIT_IO_COMPLETION ); bRc = CloseHandle((HANDLE)p->tid); assert( bRc ); + (void)bRc; } if( rc==WAIT_OBJECT_0 ) *ppOut = p->pResult; sqlite3_free(p); |