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:
Enrico Granata 2012-10-30 18:01:15 +00:00
parent 10e0e2ec49
commit 4fb310e883
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public:
const char* arg = *command;
while (arg)
{
printf("%s\n",arg);
result.Printf("%s\n",arg);
arg = *(++command);
}
return true;