diff options
Diffstat (limited to 'net/disk_cache/backend_impl.cc')
-rw-r--r-- | net/disk_cache/backend_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/backend_impl.cc b/net/disk_cache/backend_impl.cc index 5801d40..9d9628d 100644 --- a/net/disk_cache/backend_impl.cc +++ b/net/disk_cache/backend_impl.cc @@ -731,7 +731,7 @@ void BackendImpl::OnStatsTimer() { } // Save stats to disk at 5 min intervals. - if (time % 10) + if (time % 10 == 0) stats_.Store(); } |