Fixed CEF linker error.

The error manifested after upgrading to CEF 3.2171.1902.
This commit is contained in:
Oliver Hamlet
2014-11-06 15:23:44 +00:00
parent 64580005d6
commit db1fc1efdd
+1 -1
View File
@@ -178,7 +178,7 @@ namespace loot {
req = JSON::parse(request.ToString());
}
catch (exception &e) {
BOOST_LOG_TRIVIAL(error) << "Failed to parse CEF query request \"" << request << "\": " << e.what();
BOOST_LOG_TRIVIAL(error) << "Failed to parse CEF query request \"" << request.ToString() << "\": " << e.what();
callback->Failure(-1, e.what());
return true;
}