aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-03-29 18:19:52 +0000
committerdrh <drh@noemail.net>2007-03-29 18:19:52 +0000
commit3ceeb75680d518042aa73f83c0d2875e04f5058d (patch)
tree1515b1aea0b47dd637cb4ceaa924d9e55ba4660d /src/os_unix.c
parent2ecad3b4437dab87bdaf5fb2706698b587d35552 (diff)
downloadsqlite-3ceeb75680d518042aa73f83c0d2875e04f5058d.tar.gz
sqlite-3ceeb75680d518042aa73f83c0d2875e04f5058d.zip
Change the name of PAGER_SECTOR_SIZE to SQLITE_DEFAULT_SECTOR_SIZE. Make
the new OS-layer interface routine for finding sector size optional. (CVS 3750) FossilOrigin-Name: 0fb9af1d6e20bf25511c6d2097937cc11137776e
Diffstat (limited to 'src/os_unix.c')
-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 be3a30a97..fc759d801 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -2353,7 +2353,7 @@ static int unixLockState(OsFile *id){
** same for both.
*/
static int unixSectorSize(OsFile *id){
- return PAGER_SECTOR_SIZE;
+ return SQLITE_DEFAULT_SECTOR_SIZE;
}
/*