From patchwork Wed Oct 27 03:34:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: tangmeng X-Patchwork-Id: 46686 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 34D403857431 for ; Wed, 27 Oct 2021 03:35:27 +0000 (GMT) X-Original-To: libabigail@sourceware.org Delivered-To: libabigail@sourceware.org Received: from smtpbgeu1.qq.com (smtpbgeu1.qq.com [52.59.177.22]) by sourceware.org (Postfix) with ESMTPS id B3DC63857C75 for ; Wed, 27 Oct 2021 03:35:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B3DC63857C75 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: bizesmtp38t1635305706ta9ffi5d Received: from localhost.localdomain (unknown [58.240.82.166]) by esmtp6.qq.com (ESMTP) with id ; Wed, 27 Oct 2021 11:35:00 +0800 (CST) X-QQ-SSF: 0140000000000020B000B00A0000000 X-QQ-FEAT: FXvDfBZI5O5XO93/bdgrOyGEhppwYu3fwua2U5rDt0VB4sVR2qt8zyL6lLEAs exectdyy7lbwreNvfQ1CQAIpCYwewpOeyNvHbap44okRkrVQcuNcsYSGfWeJCuVycvWeNix xQ8+fkHD5Zj/Z1ZNGOeYafvTaLEaXXgX4se0YiHXbPVprC6MwEEtz1rfJJqm04DQH5m1wvD 8pB0Osoz6nBsE0nZ5yiwTQt5FzVqjSjSdWzsqXL3rvUEt+r+7bydpM2hQWZGJZnYMXin3/s BQ93WDwostbRQ+reLAA4nf/Wnr0s1Iizmq+kKlwDNn2vGaSaLtHXz+6CB1X8UdjHgz8drkJ 7MPNT+DDlQQG2gyGx4= X-QQ-GoodBg: 2 From: tangmeng To: libabigail@sourceware.org Subject: [PATCH] Fix trivial typo when printing help information Date: Wed, 27 Oct 2021 11:34:58 +0800 Message-Id: <20211027033458.27765-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.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, TXREP, T_SPF_HELO_TEMPERROR 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 the way that other commands do. Signed-off-by: tangmeng --- tools/abicompat.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ; }