diff options
author | drh <drh@noemail.net> | 2007-03-29 18:19:52 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-03-29 18:19:52 +0000 |
commit | 3ceeb75680d518042aa73f83c0d2875e04f5058d (patch) | |
tree | 1515b1aea0b47dd637cb4ceaa924d9e55ba4660d /src/os_unix.c | |
parent | 2ecad3b4437dab87bdaf5fb2706698b587d35552 (diff) | |
download | sqlite-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.c | 2 |
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; } /* |