From 33c7df0c40023cb1b0c17084680a21ee8e0229ea Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 15 Apr 2016 22:50:28 +0100 Subject: complete the rename of the gui browser table When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation. --- content/llcache.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'content/llcache.c') diff --git a/content/llcache.c b/content/llcache.c index 6e8b4017f..7144dc585 100644 --- a/content/llcache.c +++ b/content/llcache.c @@ -2529,7 +2529,7 @@ static void llcache_persist(void *p) * Schedule a check in the future to see if * overall performance is too slow to be useful. */ - guit->browser->schedule( + guit->misc->schedule( llcache->time_quantum * 100, llcache_persist_slowcheck, NULL); @@ -2582,7 +2582,7 @@ static void llcache_persist(void *p) total_written, total_elapsed, total_bandwidth); LLCACHE_LOG("Rescheduling writeout in %dms", next); - guit->browser->schedule(next, llcache_persist, NULL); + guit->misc->schedule(next, llcache_persist, NULL); } @@ -2657,7 +2657,7 @@ static void llcache_fetch_callback(const fetch_msg *msg, void *p) /* record when the fetch finished */ object->cache.fin_time = time(NULL); - guit->browser->schedule(5000, llcache_persist, NULL); + guit->misc->schedule(5000, llcache_persist, NULL); } break; @@ -3440,7 +3440,7 @@ static void llcache_users_not_caught_up(void) { if (llcache->all_caught_up) { llcache->all_caught_up = false; - guit->browser->schedule(0, llcache_catch_up_all_users, NULL); + guit->misc->schedule(0, llcache_catch_up_all_users, NULL); } } -- cgit v1.2.3