1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Clarify docs for the SQLITE_CONFIG_WIN32_HEAPSIZE option.

FossilOrigin-Name: 51e876074af4e34ba01ed122e3bcc042243c9e88
This commit is contained in:
mistachkin
2013-11-25 21:49:04 +00:00
parent ac1f10458b
commit af8641bd45
5 changed files with 16 additions and 19 deletions

View File

@@ -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;