libaurum: Fix build warning in Comparer.cc 25/258725/2
authorWoochanlee <wc0917.lee@samsung.com>
Tue, 25 May 2021 02:28:47 +0000 (11:28 +0900)
committerwoochan lee <wc0917.lee@samsung.com>
Tue, 25 May 2021 03:23:28 +0000 (03:23 +0000)
fix argument type mismatch.

Change-Id: I15918811ef1d987618e9de2fae78d11f11ce58c5

libaurum/src/Comparer.cc

index 3372093b520c1b792ac74449c4187d20279214cb..b54298f01e438af2e2cadbf316e717519761015e 100644 (file)
@@ -27,7 +27,7 @@ std::vector<std::shared_ptr<AccessibleNode>> Comparer::findObjects(const std::sh
 {
     Comparer comparer(device, selector, earlyReturn);
 
-    LOG_SCOPE_F(INFO, "findObjects selector(%s) from (type:%s style:%s, role:%s, text:%d) earlyReturn:%d", selector->description().c_str(), root->getType().c_str(),  root->getStyle().c_str(),  root->getRole().c_str(),  root->getText().c_str(), earlyReturn);
+    LOG_SCOPE_F(INFO, "findObjects selector(%s) from (type:%s style:%s, role:%s, text:%s) earlyReturn:%d", selector->description().c_str(), root->getType().c_str(),  root->getStyle().c_str(),  root->getRole().c_str(),  root->getText().c_str(), earlyReturn);
 
     if (selector->mParent) {
         auto ret = Comparer::findObjects(device, selector->mParent, root);