Fix trivial typo when printing help information
Commit Message
When abicompat prints its help information, it does not terminate
it with a newline the way that other commands do.
Signed-off-by: tangmeng <tangmeng@uniontech.com>
---
tools/abicompat.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -110,7 +110,7 @@ display_usage(const string& prog_name, ostream& out)
<< "--no-show-locs do now show location information\n"
<< "--redundant display redundant changes (this is the default)\n"
<< "--weak-mode check compatibility between the application and "
- "just one version of the library."
+ "just one version of the library.\n"
;
}