Fix logging

This commit is contained in:
John-Mark Bell 2013-02-27 03:11:30 +00:00
parent 97978e858b
commit cd3e073354
1 changed files with 2 additions and 1 deletions

View File

@ -844,10 +844,11 @@ nserror browser_window_navigate(struct browser_window *bw,
hlcache_child_context child;
nserror error;
LOG(("bw %p, url %s", bw, url));
assert(bw);
assert(url);
LOG(("bw %p, url %s", bw, nsurl_access(url)));
/* don't allow massively nested framesets */
for (cur = bw; cur->parent; cur = cur->parent) {
depth++;