From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 56384 invoked by alias); 13 Mar 2019 13:13:39 -0000 Mailing-List: contact dwz-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: dwz-owner@sourceware.org Received: (qmail 56374 invoked by uid 89); 13 Mar 2019 13:13:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:963 X-Spam-Status: No, score=-26.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: mx1.suse.de X-Virus-Scanned: by amavisd-new at test-mx.suse.de Date: Tue, 01 Jan 2019 00:00:00 -0000 From: Tom de Vries To: dwz@sourceware.org, jakub@redhat.com Subject: [committed] Fix typo in error messages Message-ID: <20190313131421.GA4179@delia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-SW-Source: 2019-q1/txt/msg00118.txt.bz2 Hi, Fix typos in error message: - "enconding" -> "encoding" - "differentpointer" -> "different pointer" Committed to trunk. Thanks, - Tom Fix typo in error messages 2019-03-13 Tom de Vries * dwz.c (read_dwarf, write_multifile): Fix typo in error messages. --- dwz.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dwz.c b/dwz.c index 476807a..6b6a33e 100644 --- a/dwz.c +++ b/dwz.c @@ -9946,7 +9946,7 @@ read_dwarf (DSO *dso, bool quieter) init_endian (dso->ehdr.e_ident[EI_DATA]); else { - error (0, 0, "%s: Wrong ELF data enconding", dso->filename); + error (0, 0, "%s: Wrong ELF data encoding", dso->filename); return 1; } @@ -10790,7 +10790,7 @@ write_multifile (DSO *dso) ? ELFDATA2LSB : ELFDATA2MSB))) { error (0, 0, "Multi-file optimization not allowed for different" - "pointer sizes or endianity"); + " pointer sizes or endianity"); multifile = NULL; return 1; }