1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Fix a typo in the OS/2 vfs code.

FossilOrigin-Name: a6bb2108bfb562a7067ef6150e43382736c0c4f5
This commit is contained in:
drh
2010-07-23 22:26:20 +00:00
parent d8747eff5a
commit 5419ee5f2f
3 changed files with 19 additions and 9 deletions

View File

@@ -779,7 +779,7 @@ static int os2Open(
memset( pFile, 0, sizeof(*pFile) );
OSTRACE( "OPEN want %d\n", flags ));
OSTRACE(( "OPEN want %d\n", flags ));
if( flags & SQLITE_OPEN_READWRITE ){
ulOpenMode |= OPEN_ACCESS_READWRITE;