diff options
author | drh <drh@noemail.net> | 2011-04-11 15:36:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-04-11 15:36:26 +0000 |
commit | c6e4172a126ddf5e39744639bd5a18b521fb01cf (patch) | |
tree | c149b533b75d0fe05d80f32011108c4c6508e321 /src/mutex_os2.c | |
parent | 68bf06716d7a969f78823c7a3b0f5ecfff5c8a71 (diff) | |
download | sqlite-c6e4172a126ddf5e39744639bd5a18b521fb01cf.tar.gz sqlite-c6e4172a126ddf5e39744639bd5a18b521fb01cf.zip |
Updates to the OS/2 patches. This change also move the location of a global
variable declaration in shell.c which might effect other build targets.
FossilOrigin-Name: 73906b67dc920e0c36e68ef9a302be3b495e8e3a
Diffstat (limited to 'src/mutex_os2.c')
-rw-r--r-- | src/mutex_os2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex_os2.c b/src/mutex_os2.c index 85129f3e4..ce650d994 100644 --- a/src/mutex_os2.c +++ b/src/mutex_os2.c @@ -251,7 +251,7 @@ static void os2MutexLeave(sqlite3_mutex *p){ #endif } -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ +sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ static const sqlite3_mutex_methods sMutex = { os2MutexInit, os2MutexEnd, |