Bug 1109873 - Follow-up to fix debug logging bustage. r=me and DONTBUILD

This commit is contained in:
Kartikaya Gupta 2015-01-08 11:29:20 -05:00
Родитель ed5fb37df8
Коммит 266f840884
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1374,9 +1374,9 @@ APZCTreeManager::GetAPZCAtPoint(HitTestingTreeNode* aNode,
// If we didn't match anything in the subtree, check |node|.
if (!result) {
APZCTM_LOG("Testing ParentLayer point %f %f (Layer %f %f) against node %p\n",
aHitTestPoint.x, aHitTestPoint.y,
hitTestPointForChildLayers.x, hitTestPointForChildLayers.y,
APZCTM_LOG("Testing ParentLayer point %s (Layer %s) against node %p\n",
Stringify(aHitTestPoint).c_str(),
hitTestPointForChildLayers ? Stringify(hitTestPointForChildLayers.ref()).c_str() : "nil",
node);
HitTestResult hitResult = node->HitTest(aHitTestPoint);
if (hitResult != HitTestResult::NoApzcHit) {