aboutsummaryrefslogtreecommitdiff
path: root/src/test_malloc.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-11-25 21:49:04 +0000
committermistachkin <mistachkin@noemail.net>2013-11-25 21:49:04 +0000
commitaf8641bd456f48f4dce54ce2303ac0cdb551ce41 (patch)
tree9f539e524206f3cf408e4d0208a442cde9178aae /src/test_malloc.c
parentac1f10458b9ab22ee0679ba8e4bff3a046e1a0ca (diff)
downloadsqlite-af8641bd456f48f4dce54ce2303ac0cdb551ce41.tar.gz
sqlite-af8641bd456f48f4dce54ce2303ac0cdb551ce41.zip
Clarify docs for the SQLITE_CONFIG_WIN32_HEAPSIZE option.
FossilOrigin-Name: 51e876074af4e34ba01ed122e3bcc042243c9e88
Diffstat (limited to 'src/test_malloc.c')
-rw-r--r--src/test_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_malloc.c b/src/test_malloc.c
index 0c2d6ba22..e3cfcaa9f 100644
--- a/src/test_malloc.c
+++ b/src/test_malloc.c
@@ -1151,7 +1151,7 @@ static int test_config_heap_size(
}
if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR;
- rc = sqlite3_config(SQLITE_CONFIG_HEAP_SIZE, nByte);
+ rc = sqlite3_config(SQLITE_CONFIG_WIN32_HEAPSIZE, nByte);
Tcl_SetResult(interp, (char *)sqlite3ErrName(rc), TCL_VOLATILE);
return TCL_OK;