aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-12-17 16:25:17 +0000
committerdrh <drh@noemail.net>2011-12-17 16:25:17 +0000
commit9c0e29371e7d97ade110adbf61a250965f291390 (patch)
treed6d01f64f967b46c1b2df332c6ad688939c2170f /src
parent1da88f025f3df80020872726071be8b0973901cb (diff)
downloadsqlite-9c0e29371e7d97ade110adbf61a250965f291390.tar.gz
sqlite-9c0e29371e7d97ade110adbf61a250965f291390.zip
Fix a bad #endif with the previous check-in on this branch.
FossilOrigin-Name: 915713ffe4d02ddf1d09a82e39a47b88d3d95ea0
Diffstat (limited to 'src')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 9f88d24b4..aa7002885 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -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;
}