1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Warning cleanup from MSVC.

FossilOrigin-Name: cde62657d6f410a3d6899cd7b4000d276fe3c813
This commit is contained in:
shaneh
2010-10-04 14:11:54 +00:00
parent 55f1da093c
commit 4b03f21e4f
3 changed files with 9 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){
sqlite3MemoryAlarm(0, 0, 0);
}
excess = sqlite3_memory_used() - n;
if( excess>0 ) sqlite3_release_memory(excess & 0x7fffffff);
if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff));
return priorLimit;
}
void sqlite3_soft_heap_limit(int n){