Clean up compiler warnings

This commit is contained in:
Andrew Johnson
2018-01-04 17:52:36 -06:00
parent d1fca67cf2
commit fa46935d35
2 changed files with 1 additions and 15 deletions

View File

@@ -1600,7 +1600,7 @@ void BlockingServerTCPTransportCodec::authenticationCompleted(epics::pvData::Sta
string errorMessage = "Re-authentication failed: " + status.getMessage();
if (!status.getStackDump().empty())
errorMessage += "\n" + status.getStackDump();
LOG(logLevelInfo, errorMessage.c_str());
LOG(logLevelInfo, "%s", errorMessage.c_str());
close();
}