core: sqlite checkpoint tweaks. Switch the periodic checkpoint to passive mode. Truncate mode was painful on mobile. I'm seeing it succeed often enough that we don't grow indefinitely. Also fix the print.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
2025-05-07 18:15:33 -04:00
parent 99a195a3fd
commit 4de53b9926
4 changed files with 22 additions and 17 deletions

View File

@ -1532,11 +1532,7 @@ static char* _subprocess_check_output(const char* command)
static bool _isspace(char c)
{
return
c == ' ' ||
c == '\t' ||
c == '\r' ||
c == '\n';
return c == ' ' || c == '\t' || c == '\r' || c == '\n';
}
static char* _trim(char* p)