From 887106bc2653538b500d96354835e43082f685e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksey=20Kliger=20=28=CE=BBgeek=29?= Date: Fri, 20 Aug 2021 08:10:19 -0400 Subject: [PATCH] Add missing comma leading to unwanted str concat (#57758) Ported from https://github.com/mono/mono/pull/21197 Co-authored-by: Ehsan Kia --- src/mono/mono/component/debugger-agent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/mono/component/debugger-agent.c b/src/mono/mono/component/debugger-agent.c index 7c2522aa6fbbb1..a6e5344a0d0d67 100644 --- a/src/mono/mono/component/debugger-agent.c +++ b/src/mono/mono/component/debugger-agent.c @@ -9808,7 +9808,7 @@ static const char* vm_cmds_str [] = { "INVOKE_METHOD", "SET_PROTOCOL_VERSION", "ABORT_INVOKE", - "SET_KEEPALIVE" + "SET_KEEPALIVE", "GET_TYPES_FOR_SOURCE_FILE", "GET_TYPES", "INVOKE_METHODS",