diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-09-02 17:18:51 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-09-02 17:18:51 +0000 |
commit | 95e80d61af84be51f26a0cc342c997617394188d (patch) | |
tree | 370cb2e52cf3e04d8aed957bb5202b97e16deae7 /src | |
parent | a8f83bfc77aa4b5450c9190312e5649158a12c19 (diff) | |
download | sqlite-95e80d61af84be51f26a0cc342c997617394188d.tar.gz sqlite-95e80d61af84be51f26a0cc342c997617394188d.zip |
Fix the position of the SQLITE_WSD macro in the declaration of global variable vfsList. (CVS 5665)
FossilOrigin-Name: e869446119724b9b1568b1f8e56e9f29ff6d3816
Diffstat (limited to 'src')
-rw-r--r-- | src/os.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) /* |