From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vmicros1.altlinux.org (vmicros1.altlinux.org [194.107.17.57]) by sourceware.org (Postfix) with ESMTP id 91AE7389247D for ; Sat, 12 Dec 2020 16:50:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 91AE7389247D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=ldv@altlinux.org Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 04A8B72C8B5 for ; Sat, 12 Dec 2020 19:50:46 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id F02AD7CC8A3; Sat, 12 Dec 2020 19:50:45 +0300 (MSK) Date: Sat, 12 Dec 2020 19:50:45 +0300 From: "Dmitry V. Levin" To: elfutils-devel@sourceware.org Subject: [PATCH 04/12] libasm: fix spelling typos in comments Message-ID: <20201212165045.GD503@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201212164901.GA474@altlinux.org> X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Dec 2020 16:50:47 -0000 endianess -> endianness setion -> section Signed-off-by: Dmitry V. Levin --- libasm/ChangeLog | 5 +++++ libasm/asm_begin.c | 2 +- libasm/asm_end.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libasm/ChangeLog b/libasm/ChangeLog index 6268b26c..78f1baa4 100644 --- a/libasm/ChangeLog +++ b/libasm/ChangeLog @@ -1,3 +1,8 @@ +2020-12-12 Dmitry V. Levin + + * asm_begin.c (prepare_binary_output): Fix spelling typo in comment. + * asm_end.c (binary_end): Likewise. + 2020-12-11 Dmitry V. Levin * Makefile.am (GCC_INCLUDE): Remove. diff --git a/libasm/asm_begin.c b/libasm/asm_begin.c index 6248786c..1df2d4ea 100644 --- a/libasm/asm_begin.c +++ b/libasm/asm_begin.c @@ -98,7 +98,7 @@ prepare_binary_output (AsmCtx_t *result, Ebl *ebl) /* Set the ELF version. */ ehdr->e_version = EV_CURRENT; - /* Use the machine, class, and endianess values from the Ebl descriptor. */ + /* Use the machine, class, and endianness values from the Ebl descriptor. */ ehdr->e_machine = ebl_get_elfmachine (ebl); ehdr->e_ident[EI_CLASS] = class; ehdr->e_ident[EI_DATA] = ebl_get_elfdata (ebl); diff --git a/libasm/asm_end.c b/libasm/asm_end.c index 3b8582fd..077d2aa5 100644 --- a/libasm/asm_end.c +++ b/libasm/asm_end.c @@ -257,7 +257,7 @@ binary_end (AsmCtx_t *ctx) xndxdata->d_off = 0; } - /* Store the real section index in the extended setion + /* Store the real section index in the extended section index table. */ assert ((size_t) ptr < ctx->nsymbol_tab + 1); xshndx[ptr] = ndx; -- ldv