Newline after usage string for lldb-server.
authorChaoren Lin <chaorenl@google.com>
Mon, 23 Feb 2015 21:48:42 +0000 (21:48 +0000)
committerChaoren Lin <chaorenl@google.com>
Mon, 23 Feb 2015 21:48:42 +0000 (21:48 +0000)
llvm-svn: 230266

lldb/tools/lldb-server/lldb-server.cpp

index 21bc663..0c2fa8b 100644 (file)
 #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);
 }