forked from OSchip/llvm-project
Replace printf with result.Printf, so that the plugin shows its output with any configuration of the LLDB I/O streams (esp. useful in graphic environments such as Xcode)
llvm-svn: 167030
This commit is contained in:
parent
10e0e2ec49
commit
4fb310e883
|
@ -35,7 +35,7 @@ public:
|
|||
const char* arg = *command;
|
||||
while (arg)
|
||||
{
|
||||
printf("%s\n",arg);
|
||||
result.Printf("%s\n",arg);
|
||||
arg = *(++command);
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue