Author: Walter Erquinigo Date: 2020-09-14T10:54:17-07:00 New Revision: a3bc0401d436d8c7d2dd5b54e13b81333d53bdff
URL: https://github.com/llvm/llvm-project/commit/a3bc0401d436d8c7d2dd5b54e13b81333d53bdff DIFF: https://github.com/llvm/llvm-project/commit/a3bc0401d436d8c7d2dd5b54e13b81333d53bdff.diff LOG: Fix 132e57bc597bd3f50174b7d286c43f76b47f11c1 Compile error found in http://lab.llvm.org:8011/builders/lldb-x86_64-debian/builds/17403/steps/build/logs/stdio Simple fix Added: Modified: lldb/tools/lldb-vscode/lldb-vscode.cpp Removed: ################################################################################ diff --git a/lldb/tools/lldb-vscode/lldb-vscode.cpp b/lldb/tools/lldb-vscode/lldb-vscode.cpp index 08973ec0f171..3b0817c71e62 100644 --- a/lldb/tools/lldb-vscode/lldb-vscode.cpp +++ b/lldb/tools/lldb-vscode/lldb-vscode.cpp @@ -2995,7 +2995,7 @@ int main(int argc, char *argv[]) { uint32_t packet_idx = 0; while (!g_vsc.sent_terminated_event) { llvm::json::Object object; - lldb_vscode::PacketStatus status = g_vsc.GetObject(object); + lldb_vscode::PacketStatus status = g_vsc.GetNextObject(object); if (status == lldb_vscode::PacketStatus::EndOfFile) break; if (status != lldb_vscode::PacketStatus::Success) _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits