diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-12-22 03:36:59 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-12-22 03:36:59 +0000 |
commit | 852e232922316b8ae824dd57e6f9a875643de1c7 (patch) | |
tree | 3a1d002fefff1b390f615cb9f703eaef8607e77a /src/os_unix.c | |
parent | 111a6a7d4707243836f7ef68f1dce0ef99c40c09 (diff) | |
download | sqlite-852e232922316b8ae824dd57e6f9a875643de1c7.tar.gz sqlite-852e232922316b8ae824dd57e6f9a875643de1c7.zip |
Fix a variable type to prevent a warning in the proxy-locking code. (CVS 6051)
FossilOrigin-Name: d9595b961800a13c141bebdb8c0a67377f30efad
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 097c044ed..7977d2268 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -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 */ |