summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-09-07 18:12:09 +0100
committerVincent Sanders <vince@kyllikki.org>2017-09-07 18:12:09 +0100
commit5d6f189d8bb723201d44a0d4f35d93ffb6a00a54 (patch)
treeacacd88fcf6f0e97db4b5392457c7d137bd05359 /content
parent2b0a5ef2e732ed484096b558116d28ac7abbef0a (diff)
downloadnetsurf-5d6f189d8bb723201d44a0d4f35d93ffb6a00a54.tar.gz
netsurf-5d6f189d8bb723201d44a0d4f35d93ffb6a00a54.tar.bz2
Fixup everything the semantic patch missed
Diffstat (limited to 'content')
-rw-r--r--content/content.c2
-rw-r--r--content/fs_backing_store.c12
2 files changed, 7 insertions, 7 deletions
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;