Fix rather serious build warning about passing non-POD types to printf. DEBUG-only

This commit is contained in:
L. David Baron 2009-12-21 16:46:25 -05:00
parent 09ff5f95d8
commit ac268014d7

View File

@ -879,7 +879,7 @@ CSSImportantRule::List(FILE* out, PRInt32 aIndent) const
// Indent
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
fprintf(out, "! Important rule block=%p\n", mImportantBlock);
fprintf(out, "! Important rule block=%p\n", mImportantBlock.get());
return NS_OK;
}
#endif