From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 05F0FC05027 for ; Sun, 29 Jan 2023 16:46:41 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 1A8F48574C; Sun, 29 Jan 2023 17:46:39 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="WuLL2xrS"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4C16785518; Sun, 29 Jan 2023 17:46:29 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 041EF85608 for ; Sun, 29 Jan 2023 17:46:27 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id BC14260C6E; Sun, 29 Jan 2023 16:46:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0857FC433D2; Sun, 29 Jan 2023 16:46:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675010784; bh=8ZFTLhmDtiAl5vqCdZTe2JSGSUlZSqyQ/tgOHb3MdxA=; h=From:To:Cc:Subject:Date:From; b=WuLL2xrSNV0wAFANJ04orpanr5UT5jqiS0tV6AvLLlwB+gfluFqt0MOPp2jPZmMwm dX0Udl3nKguCd+jqeSCnqx2vLT9TvGskkhc99kAMZINxu+nmwuOjbpK1emhZXYM0tm DhwKumHVdnDk7/XA1zlIl2x+78fvPsxUijKBB2krxUWEsooqSrE3nWQi9/LFdOn02O Dx/YUK0IK6Xc3bNrDe51/nZJ6mw1cMWWK0TY1/k/kfBdjzyzS+cpyNwyVuco6kiNPs Q1aki4tqnKzqcXIWc92/0kg9CLeWMkF9rYRfaI2uSm+/cRiIgUcGoYOcDNgfWB0M/I zfqWuUgAyVtWg== Received: by pali.im (Postfix) id 284FF976; Sun, 29 Jan 2023 17:46:21 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Simon Glass Cc: u-boot@lists.denx.de Subject: [PATCH u-boot 1/3] tools: imagetool: Fix error message when verify_header is undefined Date: Sun, 29 Jan 2023 17:45:53 +0100 Message-Id: <20230129164555.9940-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Pali Rohár --- tools/imagetool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/imagetool.c b/tools/imagetool.c index f14ca2fb979f..688169b3a813 100644 --- a/tools/imagetool.c +++ b/tools/imagetool.c @@ -105,7 +105,7 @@ static int imagetool_verify_print_header_by_type( } } else { - fprintf(stderr, "%s: print_header undefined for %s\n", + fprintf(stderr, "%s: verify_header undefined for %s\n", params->cmdname, tparams->name); } -- 2.20.1