From patchwork Fri Jul 8 22:28:37 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 16578 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 8C0ABBD1F1 for ; Fri, 8 Jul 2022 22:28:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4B0B46330F; Sat, 9 Jul 2022 00:28:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1657319330; bh=R69h2pZ7E6Y72d0ZUbsK2I205BTIRzi3xMn1VzMIeo4=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=fMScDuysSK2IO6MPbSoSXGf7+SQxopW2mpO0Aecy64mPCUeJJmMhIqB/Nydt+eOPV ckxHWukZXg/Rv6e/tLfFS/op+A2+936F9e90CITySGgt44Oahu84l5nQQMnBtGQqpD NaylG4hAxd9TQMxEHQb6uIMSrzpfdq5zzhnws2KLz7c/0hpsG7k/EAv9pnGUgzNVrX Wfl3v4G960dGJAszjFH6L1qzyTs2k/7uJ4tM1RrsSF0kIoEoW5rClnSskxJBLAnSfI /XuEagq9KSK1XvG/h+8BPZc8gIC6a1tkRN/yFoeahR1GZwYPEA15EP+bAulmW03fGE rqUrygZ60ogaA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 56D126330F for ; Sat, 9 Jul 2022 00:28:48 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="JXSLh6z/"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [IPv6:2401:4900:1f3f:82b9:3739:ca3a:12d7:3721]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 24E8447C; Sat, 9 Jul 2022 00:28:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1657319328; bh=R69h2pZ7E6Y72d0ZUbsK2I205BTIRzi3xMn1VzMIeo4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JXSLh6z/GFqDK30yN4IjeSHuoAPe66FY3zNf98S2YZruNLb4OGxt5M/DsJoMbXtR8 Qxr+16lWUl98CFSnZERMugaYTELRavPoFcoXWSFe8eHdOIptPlP70VmB9zosMJGZVg U/tHmHTpmWdb5BIytBAaxzAGpzWVHBSwxnRrJKzY= To: libcamera-devel@lists.libcamera.org Date: Sat, 9 Jul 2022 03:58:37 +0530 Message-Id: <20220708222838.370187-2-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220708222838.370187-1-umang.jain@ideasonboard.com> References: <20220708222838.370187-1-umang.jain@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] utils: ipu3-unpack: Fix error string X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart --- utils/ipu3/ipu3-unpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ipu3/ipu3-unpack.c b/utils/ipu3/ipu3-unpack.c index 2dce1038..9d2c1200 100644 --- a/utils/ipu3/ipu3-unpack.c +++ b/utils/ipu3/ipu3-unpack.c @@ -79,7 +79,7 @@ int main(int argc, char *argv[]) ret = write(out_fd, out_data, 50); if (ret < -1) { - fprintf(stderr, "Failed to read input data: %s\n", + fprintf(stderr, "Failed to write output data: %s\n", strerror(errno)); goto done; }