From 2d306934501e2373359691e570c009c6b80741f9 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 16 Jul 2015 12:03:11 +0200 Subject: [PATCH] Debugger: Fix LLDB extra dumper passing Change-Id: I1601a894b8adb3365894b21e06d4929e381b7a01 Reviewed-by: Niels Weber --- src/plugins/debugger/lldb/lldbengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/lldb/lldbengine.cpp b/src/plugins/debugger/lldb/lldbengine.cpp index 860c7f472f4..6d135df89ca 100644 --- a/src/plugins/debugger/lldb/lldbengine.cpp +++ b/src/plugins/debugger/lldb/lldbengine.cpp @@ -311,7 +311,7 @@ void LldbEngine::setupInferior() const QString commands = stringSetting(ExtraDumperCommands); if (!commands.isEmpty()) { DebuggerCommand cmd("executeDebuggerCommand"); - cmd.arg("commands", commands.toUtf8()); + cmd.arg("command", commands.toUtf8()); runCommand(cmd); }