1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a bad #endif with the previous check-in on this branch.

FossilOrigin-Name: 915713ffe4d02ddf1d09a82e39a47b88d3d95ea0
This commit is contained in:
drh
2011-12-17 16:25:17 +00:00
parent 1da88f025f
commit 9c0e29371e
3 changed files with 8 additions and 11 deletions

View File

@@ -3599,8 +3599,8 @@ static int unixSectorSize(sqlite3_file *pFile){
if( sz<512 || sz>65536 || (sz&(sz-1))!=0 ){
p->szSector = SQLITE_DEFAULT_SECTOR_SIZE;
}
}
#endif
}
return p->szSector;
}