Newline after usage string for lldb-server.

llvm-svn: 230266
This commit is contained in:
Chaoren Lin 2015-02-23 21:48:42 +00:00
parent 27aa1423d2
commit e4bb0b3551
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@
#include <stdio.h>
#include <stdlib.h>
static void
static void
display_usage (const char *progname)
{
fprintf(stderr, "Usage:\n"
" %s g[dbserver] [options]\n"
" %s p[latform] [options]\n"
"Invoke subcommand for additional help", progname, progname);
"Invoke subcommand for additional help\n", progname, progname);
exit(0);
}