From patchwork Wed Oct 27 03:44:24 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: tangmeng X-Patchwork-Id: 46687 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 28D143857007 for ; Wed, 27 Oct 2021 03:44:40 +0000 (GMT) X-Original-To: libabigail@sourceware.org Delivered-To: libabigail@sourceware.org Received: from smtpproxy21.qq.com (smtpbg702.qq.com [203.205.195.102]) by sourceware.org (Postfix) with ESMTPS id 2E6793857416 for ; Wed, 27 Oct 2021 03:44:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2E6793857416 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=uniontech.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=uniontech.com X-QQ-mid: bizesmtp33t1635306270tmknq4w4 Received: from localhost.localdomain (unknown [58.240.82.166]) by esmtp6.qq.com (ESMTP) with id ; Wed, 27 Oct 2021 11:44:26 +0800 (CST) X-QQ-SSF: 0140000000200020B000000A0000000 X-QQ-FEAT: FXvDfBZI5O5/KaCMNtd25VtCc+/q7UwSOvLk1OMgo87TOZqbTbvOtcfcn+o7W Cc95QU7ZedvyKOu48aX5FsA79Iy245ev8PdBuPR+2UJWvdmUZZw7Uw2F3UBcr7s+RMSIDNf koXDZgp1CmXnMswooe1IDGCmzy4gHm4bXLU4OuutAyidllNoC5ba0lpTvp7qdmYws1/85QM ulva3GTTlVO/+l8J2MX1xSIBd2Q9ZCIFzb7dJYKZC8+ue+3K0qZNB2AwVAx+cxHzDIZIQJD NTaWpu+q/UFPnUKEvKhUrUVkO/lp3/BsNNX4epAuePPf7fgh2VwWu6hyNOb69Gy5gbYiVBA mt33gGI5gtstV9nTK/J4QsIrrEicRhpDWARDUvZ X-QQ-GoodBg: 2 From: tangmeng To: libabigail@sourceware.org Subject: [libabigail][PATCH v2] Fix trivial typo when printing help information Date: Wed, 27 Oct 2021 11:44:24 +0800 Message-Id: <20211027034424.29705-1-tangmeng@uniontech.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:uniontech.com:qybgforeign:qybgforeign7 X-QQ-Bgrelay: 1 X-Spam-Status: No, score=-13.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libabigail@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Mailing list of the Libabigail project List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , Cc: tangmeng Errors-To: libabigail-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libabigail" 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. Signed-off-by: tangmeng --- tools/abicompat.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/abicompat.cc b/tools/abicompat.cc index be3946e1..60cd794f 100644 --- a/tools/abicompat.cc +++ b/tools/abicompat.cc @@ -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 set the path " "to the debug information directory for the second library\n" - << "--suppressions|--suppr 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 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" ; }