Bug 977832: Make layout debugger's List() invocation use default "aPrefix" arg, instead of passing "0" (which now gets interpreted as null). r=tn

This commit is contained in:
Daniel Holbert 2014-02-27 15:03:29 -08:00
parent be864ece0c
commit 93b069e2c1

View File

@ -391,7 +391,7 @@ DumpFramesRecur(nsIDocShell* aDocShell, FILE* out)
if (shell) {
nsIFrame* root = shell->GetRootFrame();
if (root) {
root->List(out, 0);
root->List(out);
}
}
else {