From 9afeecb5146a21a8a7986498f42d67e4193ece8c Mon Sep 17 00:00:00 2001 From: vms Date: Wed, 1 Mar 2023 14:03:25 +0300 Subject: [PATCH] fix function name --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f84597e..0d2908e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -313,7 +313,7 @@ fn last_error(raw: ffi::Sqlite3DbHandle) -> Option { /// usages approaches the limit. The soft heap limit is "soft" because even though SQLite strives /// to stay below the limit, it will exceed the limit rather than generate an SQLITE_NOMEM error. /// In other words, the soft heap limit is advisory only. -pub fn soft_heap_limit64(limit: i64) -> i64 { +pub fn soft_soft_heap_limit64(limit: i64) -> i64 { unsafe { ffi::sqlite3_hard_heap_limit64(limit) } }