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

@@ -1,5 +1,5 @@
C Continue\srefactoring\swhere.c\sin\spreparation\sfor\sinstalling\sOR-clause\noptimizations.\s(CVS\s6050) C Fix\sa\svariable\stype\sto\sprevent\sa\swarning\sin\sthe\sproxy-locking\scode.\s(CVS\s6051)
D 2008-12-21T03:51:16 D 2008-12-22T03:37:00
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in f7e4c81c347b04f7b0f1c1b081a168645d7b8af7 F Makefile.in f7e4c81c347b04f7b0f1c1b081a168645d7b8af7
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -140,7 +140,7 @@ F src/os.c ed93a6b46132a602c4fd7a58142e2981c829c79d
F src/os.h 4ee25a35c00e75a569cecb5080be299b0c3e208e F src/os.h 4ee25a35c00e75a569cecb5080be299b0c3e208e
F src/os_common.h 24525d8b7bce66c374dfc1810a6c9043f3359b60 F src/os_common.h 24525d8b7bce66c374dfc1810a6c9043f3359b60
F src/os_os2.c bed77dc26e3a95ce4a204936b9a1ca6fe612fcc5 F src/os_os2.c bed77dc26e3a95ce4a204936b9a1ca6fe612fcc5
F src/os_unix.c 96b4a6e87335ba943455740f311b4dfb63f26756 F src/os_unix.c e6eacc7ec735ded605fefcbaf250058baa8feb12
F src/os_win.c 496e3ceb499aedc63622a89ef76f7af2dd902709 F src/os_win.c 496e3ceb499aedc63622a89ef76f7af2dd902709
F src/pager.c 5c2b49c37db966bc312ff28d296767961fb894c3 F src/pager.c 5c2b49c37db966bc312ff28d296767961fb894c3
F src/pager.h 7191294438881eb4d13eedade97891e8dc993905 F src/pager.h 7191294438881eb4d13eedade97891e8dc993905
@@ -684,7 +684,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
P 49172e487610268662c39fc4038032779a41c47f P 778e91ddb834f6084ecdf3909692b54bb7da8f6d
R 019fd4ad031eb96e8df6ba9c36e53615 R 24c69e7f21063e09d372b85b48a9e328
U drh U danielk1977
Z 8c8a7b38e53711dc931521d447fa489c Z a57801844c740a64a631ffb37d80b4cc

View File

@@ -1 +1 @@
778e91ddb834f6084ecdf3909692b54bb7da8f6d d9595b961800a13c141bebdb8c0a67377f30efad

View File

@@ -43,7 +43,7 @@
** * Definitions of sqlite3_vfs objects for all locking methods ** * Definitions of sqlite3_vfs objects for all locking methods
** plus implementations of sqlite3_os_init() and sqlite3_os_end(). ** 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" #include "sqliteInt.h"
#if SQLITE_OS_UNIX /* This file is used on unix only */ #if SQLITE_OS_UNIX /* This file is used on unix only */
@@ -3203,7 +3203,7 @@ static const sqlite3_io_methods *autolockIoFinderImpl(
return &dotlockIoMethods; return &dotlockIoMethods;
} }
} }
static const sqlite3_io_methods (*const autolockIoFinder)(const char*,int) static const sqlite3_io_methods *(*const autolockIoFinder)(const char*,int)
= autolockIoFinderImpl; = autolockIoFinderImpl;
#endif /* defined(__DARWIN__) && SQLITE_ENABLE_LOCKING_STYLE */ #endif /* defined(__DARWIN__) && SQLITE_ENABLE_LOCKING_STYLE */