From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 7915B3858C20 for ; Fri, 2 Jun 2023 15:56:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7915B3858C20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 9E20521A4C for ; Fri, 2 Jun 2023 15:56:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1685721393; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5/eBjUWcPub0FvXv8UdmpbVMyiK5uzYOyT443aDWcSU=; b=wLxeVFli9sCc/NZKdUJIx8HeOs5tvT9CR/39vZVY5BQT/jmZj24mj8JgDs0xNzaRQurQLm 2DdPrAWl7jbf6ux7LXV6H/GBcO1g3AwZpBDgsrz0ttxt07jTOTeX2/T8MLdP3XpeebOe2M v4hSne2qz+Z++1M5Vh1BcEz/jiymzfA= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1685721393; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5/eBjUWcPub0FvXv8UdmpbVMyiK5uzYOyT443aDWcSU=; b=OHvj0qTnc115K8sphLG4UrkcUoUmJT0dGdadZo7IAiEDpnrognZ5Fqmaa9qynRMJZCaHG+ 7+qfEkvUfbo0nTCA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 8BAE213A39 for ; Fri, 2 Jun 2023 15:56:33 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 4MsFITERemQ6ewAAMHmgww (envelope-from ) for ; Fri, 02 Jun 2023 15:56:33 +0000 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [PATCH 03/10] [gdb/compile] Fix typo in debug message Date: Fri, 2 Jun 2023 17:56:32 +0200 Message-Id: <20230602155639.28245-4-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 In-Reply-To: <20230602155639.28245-1-tdevries@suse.de> References: <20230602155639.28245-1-tdevries@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: In compile_object_load in gdb/compile/compile-object-load.c I came across: ... "Connectiong ELF symbol \"%s\" to the .toc section (%s)\n", ... Fix this typo by using "Connecting" instead. --- gdb/compile/compile-object-load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/compile/compile-object-load.c b/gdb/compile/compile-object-load.c index 12939b19e09..07cbbed4af9 100644 --- a/gdb/compile/compile-object-load.c +++ b/gdb/compile/compile-object-load.c @@ -757,7 +757,7 @@ compile_object_load (const compile_file_names &file_names, bfd_set_gp_value(abfd.get(), toc_fallback->vma); if (compile_debug) gdb_printf (gdb_stdlog, - "Connectiong ELF symbol \"%s\" to the .toc section (%s)\n", + "Connecting ELF symbol \"%s\" to the .toc section (%s)\n", sym->name, paddress (target_gdbarch (), sym->value)); continue; -- 2.35.3