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
Родитель ba8d7cd017
Коммит 2687d949d4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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