Fix warning in IPC proxy classes

This commit is contained in:
XinyuHou
2016-12-07 17:35:52 +00:00
parent 74d63df244
commit c31f908fb2
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ IpcClientProxy::send(const IpcMessage& message)
switch (message.type()) {
case kIpcLogLine: {
const IpcLogLineMessage& llm = static_cast<const IpcLogLineMessage&>(message);
String logLine = llm.logLine();
const String logLine = llm.logLine();
ProtocolUtil::writef(&m_stream, kIpcMsgLogLine, &logLine);
break;
}