]> sourceware.org Git - libabigail.git/commitdiff
Fix trivial typo when printing help information
authortangmeng <tangmeng@uniontech.com>
Wed, 27 Oct 2021 03:44:24 +0000 (11:44 +0800)
committerDodji Seketeli <dodji@redhat.com>
Wed, 27 Oct 2021 10:49:03 +0000 (12:49 +0200)
When abicompat prints its help information, it does not terminate
it with a newline and option format is not aligned the way that
other commands do.

* tools/abicompat.cc (display_usage): End the usage message with a
newline and properly indent it.

Signed-off-by: tangmeng <tangmeng@uniontech.com>
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
tools/abicompat.cc

index be3946e1e0c2f5da534d2f58fc5a2c7698ba33b3..60cd794f37775d4ff4c994639dfaa61cfcc2aed2 100644 (file)
@@ -105,12 +105,12 @@ display_usage(const string& prog_name, ostream& out)
     "to the debug information directory for the first library\n"
     << "  --lib-debug-info-dir2|--libd2 <path-to-lib-debug-info2>  set the path "
     "to the debug information directory for the second library\n"
-    <<  "--suppressions|--suppr <path> specify a suppression file\n"
-    << "--no-redundant  do not display redundant changes\n"
-    << "--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."
+    << "  --suppressions|--suppr <path> specify a suppression file\n"
+    << "  --no-redundant  do not display redundant changes\n"
+    << "  --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.\n"
     ;
 }
 
This page took 0.033277 seconds and 5 git commands to generate.