Fixing bustage -- bryner forgot to update this file

Bug 222134


git-svn-id: svn://10.0.0.236/trunk@148267 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
caillon%returnzero.com
2003-10-22 07:04:16 +00:00
parent 1ee2e4b28b
commit d16d7bd5ac

View File

@@ -401,8 +401,7 @@ DumpContentRecur(nsIDocShell* aDocShell, FILE* out)
fprintf(out, "docshell=%p \n", NS_STATIC_CAST(void*, aDocShell));
nsCOMPtr<nsIDocument> doc(document(aDocShell));
if (doc) {
nsCOMPtr<nsIContent> root;
doc->GetRootContent(getter_AddRefs(root));
nsIContent *root = doc->GetRootContent();
if (root) {
root->List(out);
}