diff options
author | drh <drh@noemail.net> | 2008-12-08 18:19:17 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-12-08 18:19:17 +0000 |
commit | 1875f7a3dbbcc252804c60d92a7abbc4888b4996 (patch) | |
tree | 90da5a754e84e42c70ecd24247c02306ad4d429f /src/mutex_w32.c | |
parent | 128255fce671bf3c19feb569f4b87e7e6003da24 (diff) | |
download | sqlite-1875f7a3dbbcc252804c60d92a7abbc4888b4996.tar.gz sqlite-1875f7a3dbbcc252804c60d92a7abbc4888b4996.zip |
The amalgamation now compiles cleanly on GCC with options
-pedantic-errors -Wno-long-long. (CVS 5991)
FossilOrigin-Name: 73c7302c5f76a2f61ecd75f8bda69bb500d3119c
Diffstat (limited to 'src/mutex_w32.c')
-rw-r--r-- | src/mutex_w32.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mutex_w32.c b/src/mutex_w32.c index 0d9381109..320c448a6 100644 --- a/src/mutex_w32.c +++ b/src/mutex_w32.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains the C functions that implement mutexes for win32 ** -** $Id: mutex_w32.c,v 1.12 2008/11/10 20:01:41 shane Exp $ +** $Id: mutex_w32.c,v 1.13 2008/12/08 18:19:18 drh Exp $ */ #include "sqliteInt.h" @@ -243,6 +243,9 @@ sqlite3_mutex_methods *sqlite3DefaultMutex(void){ #ifdef SQLITE_DEBUG winMutexHeld, winMutexNotheld +#else + 0, + 0 #endif }; |