From db1fc1efddc7626ff802728434189aed2c21f1dc Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 6 Nov 2014 15:23:44 +0000 Subject: [PATCH] Fixed CEF linker error. The error manifested after upgrading to CEF 3.2171.1902. --- src/gui/handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/handler.cpp b/src/gui/handler.cpp index 8f1c5ffd..f6300ccd 100644 --- a/src/gui/handler.cpp +++ b/src/gui/handler.cpp @@ -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; }