mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix the position of the SQLITE_WSD macro in the declaration of global variable vfsList. (CVS 5665)
FossilOrigin-Name: e869446119724b9b1568b1f8e56e9f29ff6d3816
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
||||
C Fine\stune\sthe\shard-coded\svalues\spassed\sto\ssqlite3_init_wsd().\s(CVS\s5664)
|
||||
D 2008-09-02T16:22:29
|
||||
C Fix\sthe\sposition\sof\sthe\sSQLITE_WSD\smacro\sin\sthe\sdeclaration\sof\sglobal\svariable\svfsList.\s(CVS\s5665)
|
||||
D 2008-09-02T17:18:52
|
||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||
F Makefile.in 689e14735f862a5553bceef206d8c13e29504e44
|
||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||
@@ -129,7 +129,7 @@ F src/mutex.h e52ffa1dfc6a6077e8b1823d2c2b7dfcbcf85594
|
||||
F src/mutex_os2.c 9c5637aa4c307c552566d0f0b3bd206245b54a97
|
||||
F src/mutex_unix.c 29049a61755cccddb2ee53904e6906bb7674223c
|
||||
F src/mutex_w32.c f0d21ff1f6981e5aedc56796adf3a347423ef736
|
||||
F src/os.c 364d7c79f7437c708c1275eacab4328d51757e73
|
||||
F src/os.c 543976efc0b177b40779d5fc00f709d6888d6903
|
||||
F src/os.h ef8abeb9afc694b82dbd169a91c9b7e26db3c892
|
||||
F src/os_common.h 24525d8b7bce66c374dfc1810a6c9043f3359b60
|
||||
F src/os_os2.c e391fc95adc744bbdcefd4d11e3066998185a0a0
|
||||
@@ -630,7 +630,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
|
||||
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
|
||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||
P 43f757c9f01ccc6e6c7a404fbeb74f825f7a29ca
|
||||
R 09d4fbec45f895938cb0d76ecfb46d71
|
||||
P af5763eb65baa791a38f7e235624e4f63beac104
|
||||
R 614d8789ebf6e763073894eea03bb50c
|
||||
U danielk1977
|
||||
Z 9698f3c633c4547af630faf1230b9965
|
||||
Z 89924553a58b9babc004b5df11c6ef86
|
||||
|
@@ -1 +1 @@
|
||||
af5763eb65baa791a38f7e235624e4f63beac104
|
||||
e869446119724b9b1568b1f8e56e9f29ff6d3816
|
4
src/os.c
4
src/os.c
@@ -13,7 +13,7 @@
|
||||
** This file contains OS interface code that is common to all
|
||||
** architectures.
|
||||
**
|
||||
** $Id: os.c,v 1.121 2008/09/02 10:22:01 danielk1977 Exp $
|
||||
** $Id: os.c,v 1.122 2008/09/02 17:18:52 danielk1977 Exp $
|
||||
*/
|
||||
#define _SQLITE_OS_C_ 1
|
||||
#include "sqliteInt.h"
|
||||
@@ -190,7 +190,7 @@ int sqlite3OsCloseFree(sqlite3_file *pFile){
|
||||
/*
|
||||
** The list of all registered VFS implementations.
|
||||
*/
|
||||
static SQLITE_WSD sqlite3_vfs *vfsList = 0;
|
||||
static sqlite3_vfs * SQLITE_WSD vfsList = 0;
|
||||
#define vfsList GLOBAL(sqlite3_vfs *, vfsList)
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user