1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +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:
danielk1977
2008-09-02 17:18:51 +00:00
parent a8f83bfc77
commit 95e80d61af
3 changed files with 9 additions and 9 deletions

View File

@@ -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)
/*