aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2007-03-19 17:44:26 +0000
committerdanielk1977 <danielk1977@noemail.net>2007-03-19 17:44:26 +0000
commit3b8a05f6816a77cde324742df285ea75c89f3153 (patch)
treefb985bc46418ec75f13b0adedea863111e101f93 /src/util.c
parenta8553141c99e7c406a3c864d0c463511d72feb85 (diff)
downloadsqlite-3b8a05f6816a77cde324742df285ea75c89f3153.tar.gz
sqlite-3b8a05f6816a77cde324742df285ea75c89f3153.zip
Modify the interface to the pager sub-system in preparation for performing IO in blocks based on sector-size, not database page-size. (CVS 3705)
FossilOrigin-Name: 7dc7658887046f066b564a5994578074a99756ba
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index a160473e1..96d82e7a0 100644
--- a/src/util.c
+++ b/src/util.c
@@ -14,7 +14,7 @@
** This file contains functions for allocating memory, comparing
** strings, and stuff like that.
**
-** $Id: util.c,v 1.194 2007/03/15 15:33:32 danielk1977 Exp $
+** $Id: util.c,v 1.195 2007/03/19 17:44:28 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -83,7 +83,7 @@ void sqlite3_soft_heap_limit(int n){
** Release memory held by SQLite instances created by the current thread.
*/
int sqlite3_release_memory(int n){
- return sqlite3pager_release_memory(n);
+ return sqlite3PagerReleaseMemory(n);
}
#else
/* If SQLITE_ENABLE_MEMORY_MANAGEMENT is not defined, then define a version