Whoops... Ilia forgot a ')'

This commit is contained in:
John Coggeshall 2004-01-13 05:23:07 +00:00
parent 848684fa96
commit 646389a1ff

View file

@ -179,7 +179,7 @@ PS_GC_FUNC(sqlite)
* we need to occassionaly do so manually to prevent the sessions database
* from endlessly growing.
*/
if ((int) ((float) PS(gc_divisor) * PS(gc_divisor) * php_combined_lcg(TSRMLS_C)) < PS(gc_probability) {
if ((int) ((float) PS(gc_divisor) * PS(gc_divisor) * php_combined_lcg(TSRMLS_C)) < PS(gc_probability)) {
rv = sqlite_exec_printf(db, "VACUUM", NULL, NULL, NULL);
}
return SQLITE_RETVAL(rv);