Skip to content

Commit fda18cc

Browse files
committed
Fix a Middle log build error
1 parent d04367e commit fda18cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CumulusLib/sources/Middle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void Middle::targetHandshakeHandler(UInt8 type,PacketReader& packet) {
113113
string targetKey;
114114
UInt32 keySize = packet.read7BitValue();
115115
if (packet.read16() != 0x1D02) {
116-
ERROR("Expected signature (1D02) in handshake 70 but found ", Util::FormatHex((packet.current() - 2), 2));
116+
ERROR("Expected signature (1D02) in handshake 70 but found ", Util::FormatHex((packet.current() - 2), 2).c_str());
117117
return;
118118
}
119119
packet.readRaw(keySize-2, targetKey);

0 commit comments

Comments
 (0)