Skip to content

Commit 1079d9c

Browse files
authored
[llvm-driver] Add a newline at the end of the help message (#99425)
This was constantly messing with my terminal prompt 😹
1 parent 92a0654 commit 1079d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-driver/llvm-driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static void printHelpMessage() {
3333
<< subcommands
3434
<< "\n Type \"llvm <subcommand> --help\" to get more help on a "
3535
"specific subcommand\n\n"
36-
<< "OPTIONS:\n\n --help - Display this message";
36+
<< "OPTIONS:\n\n --help - Display this message\n";
3737
}
3838

3939
static int findTool(int Argc, char **Argv, const char *Argv0) {

0 commit comments

Comments
 (0)