summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-10-18 00:23:09 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:56 +0200
commit4980d387dc4fe25ab83b00e460c48482725636ba (patch)
tree54717a3ab6ae72d839bc8fc74ec5476adab5666a /frontends
parentff154031b0fd843c2973788e3110ab25b845c297 (diff)
downloadnetsurf-4980d387dc4fe25ab83b00e460c48482725636ba.tar.gz
netsurf-4980d387dc4fe25ab83b00e460c48482725636ba.tar.bz2
Fix polling of http connections when going through linked list.
Diffstat (limited to 'frontends')
-rw-r--r--frontends/kolibrios/schedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/kolibrios/schedule.c b/frontends/kolibrios/schedule.c
index 0426478fb..a0d9da0f2 100644
--- a/frontends/kolibrios/schedule.c
+++ b/frontends/kolibrios/schedule.c
@@ -108,7 +108,7 @@ nserror framebuffer_schedule(int tival, void (*callback)(void *p), void *p)
return ret;
}
- LOG("Adding %p(%p) in %d", callback, p, tival);
+ /* LOG("Adding %p(%p) in %d", callback, p, tival); */
nscb = calloc(1, sizeof(struct nscallback));
nscb->tv = get_tick_count() + tival / 10;