1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a variable type to prevent a warning in the proxy-locking code. (CVS 6051)

FossilOrigin-Name: d9595b961800a13c141bebdb8c0a67377f30efad
This commit is contained in:
danielk1977
2008-12-22 03:36:59 +00:00
parent 111a6a7d47
commit 852e232922
3 changed files with 10 additions and 10 deletions

View File

@@ -43,7 +43,7 @@
** * Definitions of sqlite3_vfs objects for all locking methods
** plus implementations of sqlite3_os_init() and sqlite3_os_end().
**
** $Id: os_unix.c,v 1.232 2008/12/11 02:56:07 drh Exp $
** $Id: os_unix.c,v 1.233 2008/12/22 03:37:00 danielk1977 Exp $
*/
#include "sqliteInt.h"
#if SQLITE_OS_UNIX /* This file is used on unix only */
@@ -3203,7 +3203,7 @@ static const sqlite3_io_methods *autolockIoFinderImpl(
return &dotlockIoMethods;
}
}
static const sqlite3_io_methods (*const autolockIoFinder)(const char*,int)
static const sqlite3_io_methods *(*const autolockIoFinder)(const char*,int)
= autolockIoFinderImpl;
#endif /* defined(__DARWIN__) && SQLITE_ENABLE_LOCKING_STYLE */