summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
Diffstat (limited to 'win8')
-rw-r--r--win8/test/ui_automation_client.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/win8/test/ui_automation_client.cc b/win8/test/ui_automation_client.cc
index 153b917..bb5082e 100644
--- a/win8/test/ui_automation_client.cc
+++ b/win8/test/ui_automation_client.cc
@@ -542,7 +542,7 @@ HRESULT UIAutomationClient::Context::GetInvokableItems(
continue;
}
if (V_VT(&var) != VT_BSTR) {
- LOG(ERROR) << __FUNCTION__ " name is not a BSTR: " << V_VT(&var);
+ LOG(ERROR) << __FUNCTION__ << " name is not a BSTR: " << V_VT(&var);
continue;
}
choices->push_back(base::string16(V_BSTR(&var)));
@@ -573,7 +573,8 @@ void UIAutomationClient::Context::CloseWindow(
}
if (V_VT(&var) != VT_I4) {
- LOG(ERROR) << __FUNCTION__ " window handle is not an int: " << V_VT(&var);
+ LOG(ERROR) << __FUNCTION__
+ << " window handle is not an int: " << V_VT(&var);
return;
}