summaryrefslogtreecommitdiff
path: root/content/content.c
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/content.c
parent2b0a5ef2e732ed484096b558116d28ac7abbef0a (diff)
downloadnetsurf-5d6f189d8bb723201d44a0d4f35d93ffb6a00a54.tar.gz
netsurf-5d6f189d8bb723201d44a0d4f35d93ffb6a00a54.tar.bz2
Fixup everything the semantic patch missed
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c2
1 files changed, 1 insertions, 1 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)