Fix trivial typo when printing help information

Message ID 20211027033458.27765-1-tangmeng@uniontech.com
State New
Headers
Series Fix trivial typo when printing help information |

Commit Message

tangmeng Oct. 27, 2021, 3:34 a.m. UTC
  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(-)
  

Patch

diff --git a/tools/abicompat.cc b/tools/abicompat.cc
index be3946e1..2dfa12a3 100644
--- a/tools/abicompat.cc
+++ b/tools/abicompat.cc
@@ -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"
     ;
 }