aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-12-03 22:33:55 +0000
committerdrh <drh@noemail.net>2015-12-03 22:33:55 +0000
commit15427279c89f766e8ec8519e92c0ddd49d5af22a (patch)
tree1f53c96650af39d211cf542afa3b80450d291ade /src/main.c
parent9802947fd88ece99796b444e06f918b6578fe3ab (diff)
downloadsqlite-15427279c89f766e8ec8519e92c0ddd49d5af22a.tar.gz
sqlite-15427279c89f766e8ec8519e92c0ddd49d5af22a.zip
Fix typos in requirements text and update requirements marks. No changes
to code. FossilOrigin-Name: 8534a46c06601ad35b97caee442371f24c718d0f
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 2bcecdb78..d552f7fbc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -445,9 +445,10 @@ int sqlite3_config(int op, ...){
break;
}
case SQLITE_CONFIG_PAGECACHE: {
- /* EVIDENCE-OF: R-31408-40510 There are three arguments to
- ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory, the size
- ** of each page buffer (sz), and the number of pages (N). */
+ /* EVIDENCE-OF: R-18761-36601 There are three arguments to
+ ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory (pMem),
+ ** the size of each page cache line (sz), and the number of cache lines
+ ** (N). */
sqlite3GlobalConfig.pPage = va_arg(ap, void*);
sqlite3GlobalConfig.szPage = va_arg(ap, int);
sqlite3GlobalConfig.nPage = va_arg(ap, int);