File tree 1 file changed +3
-3
lines changed
lldb/source/Plugins/Process/gdb-remote
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,10 @@ GDBRemoteCommunicationReplayServer::GetPacketAndSendResponse(
123
123
if (entry.type == GDBRemoteCommunicationHistory::ePacketTypeSend) {
124
124
if (unexpected (entry.packet .data , packet.GetStringRef ())) {
125
125
LLDB_LOG (log ,
126
- " GDBRemoteCommunicationReplayServer expected packet: '{}' \n " ,
126
+ " GDBRemoteCommunicationReplayServer expected packet: '{0}' " ,
127
127
entry.packet .data );
128
128
LLDB_LOG (log ,
129
- " GDBRemoteCommunicationReplayServer actual packet: '{}' \n " ,
129
+ " GDBRemoteCommunicationReplayServer actual packet: '{0}' " ,
130
130
packet.GetStringRef ());
131
131
}
132
132
@@ -143,7 +143,7 @@ GDBRemoteCommunicationReplayServer::GetPacketAndSendResponse(
143
143
if (entry.type == GDBRemoteCommunicationHistory::ePacketTypeInvalid) {
144
144
LLDB_LOG (
145
145
log ,
146
- " GDBRemoteCommunicationReplayServer skipped invalid packet: '{}' \n " ,
146
+ " GDBRemoteCommunicationReplayServer skipped invalid packet: '{0}' " ,
147
147
packet.GetStringRef ());
148
148
continue ;
149
149
}
You can’t perform that action at this time.
0 commit comments