From 5d6f189d8bb723201d44a0d4f35d93ffb6a00a54 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 7 Sep 2017 18:12:09 +0100 Subject: Fixup everything the semantic patch missed --- content/content.c | 2 +- content/fs_backing_store.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'content') diff --git a/content/content.c b/content/content.c index 8ed5c1ba8..9a240417d 100644 --- a/content/content.c +++ b/content/content.c @@ -770,7 +770,7 @@ void content_broadcast(struct content *c, content_msg msg, struct content_user *user, *next; assert(c); -// LOG("%p -> msg:%d", c, msg); + NSLOG(netsurf, DEEPDEBUG, "%p -> msg:%d", c, msg); for (user = c->user_list->next; user != 0; user = next) { next = user->next; /* user may be destroyed during callback */ if (user->callback != 0) diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c index 648565088..1b59ea150 100644 --- a/content/fs_backing_store.c +++ b/content/fs_backing_store.c @@ -1153,12 +1153,12 @@ build_entrymap(struct store_state *state) state->total_alloc = 0; for (eloop = 1; eloop < state->last_entry; eloop++) { - /* - LOG("entry:%d ident:0x%08x used:%d", - eloop, - BS_ADDRESS(state->entries[eloop].ident, state), - state->entries[eloop].use_count); - */ + + NSLOG(llcache, DEEPDEBUG, + "entry:%d ident:0x%08x used:%d", + eloop, + BS_ADDRESS(state->entries[eloop].ident, state), + state->entries[eloop].use_count); /* update the address map to point at the entry */ BS_ENTRY_INDEX(state->entries[eloop].ident, state) = eloop; -- cgit v1.2.3