Bug 1576696 - Add a '0x' prefix to hex pointer values in logging nodes. r=Jamie

Differential Revision: https://phabricator.services.mozilla.com/D43485

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Eitan Isaacson 2019-08-27 02:02:01 +00:00
Родитель 05036fda25
Коммит 8593d6d908
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -358,7 +358,7 @@ static void DescribeNode(nsINode* aNode, nsAString& aOutDescription) {
return;
}
aOutDescription.AppendPrintf("%p, ", (void*)aNode);
aOutDescription.AppendPrintf("0x%p, ", (void*)aNode);
aOutDescription.Append(aNode->NodeInfo()->QualifiedName());
if (!aNode->IsElement()) {