diff options
author | John Coggeshall <john@php.net> | 2004-01-13 05:23:07 +0000 |
---|---|---|
committer | John Coggeshall <john@php.net> | 2004-01-13 05:23:07 +0000 |
commit | 646389a1ffa0809b087dc0eaafa8a666a375af7c (patch) | |
tree | 33ebf9ad4e7ab14c555035302119dd2cc7a806d6 | |
parent | 848684fa96cdee7f09f171edfa7f9a758baad7fa (diff) | |
download | php-git-646389a1ffa0809b087dc0eaafa8a666a375af7c.tar.gz |
Whoops... Ilia forgot a ')'
-rw-r--r-- | ext/sqlite/sess_sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sess_sqlite.c b/ext/sqlite/sess_sqlite.c index 86aed96cbd..1b8f4cfcbd 100644 --- a/ext/sqlite/sess_sqlite.c +++ b/ext/sqlite/sess_sqlite.c @@ -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); |