70386 (warning fix), r=timeless

git-svn-id: svn://10.0.0.236/trunk@88263 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dr%netscape.com 2001-03-01 02:44:24 +00:00
parent 2b05ea5bef
commit ef9cd51fae
2 changed files with 2 additions and 2 deletions

View File

@ -3795,7 +3795,7 @@ void StyleContextImpl::List(FILE* out, PRInt32 aIndent)
// Indent
PRInt32 ix;
for (ix = aIndent; --ix >= 0; ) fputs(" ", out);
fprintf(out, "%p(%d) ", this, mRefCnt);
fprintf(out, "%p(%d) ", (void*)this, mRefCnt);
if (nsnull != mPseudoTag) {
nsAutoString buffer;
mPseudoTag->ToString(buffer);

View File

@ -3795,7 +3795,7 @@ void StyleContextImpl::List(FILE* out, PRInt32 aIndent)
// Indent
PRInt32 ix;
for (ix = aIndent; --ix >= 0; ) fputs(" ", out);
fprintf(out, "%p(%d) ", this, mRefCnt);
fprintf(out, "%p(%d) ", (void*)this, mRefCnt);
if (nsnull != mPseudoTag) {
nsAutoString buffer;
mPseudoTag->ToString(buffer);