Bug 242704 - AIX debug build fails after recent AppendInt changes

r=jst@mozilla.jstenback.com, sr=darin@meer.net
This commit is contained in:
pkw%us.ibm.com 2004-05-05 19:29:12 +00:00
Родитель 2f9fddace3
Коммит 775bdcada4
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -43,6 +43,7 @@
#include "nsIRDFResource.h"
#include "nsIAtom.h"
#include "nsXULContentUtils.h"
#include "nsPrintfCString.h"
#include "prlog.h"
#ifdef PR_LOGGING
@ -87,8 +88,7 @@ ElementToString(nsIContent *aContent, nsString &aResult)
{
aContent->Tag()->ToString(aResult);
aResult.Append(PRUnichar('@'));
aResult.AppendInt(NS_PTR_TO_INT32(aContent), 16);
AppendASCIItoUTF16(nsPrintfCString(18, "@%p", aContent), aResult);
}
#endif