From 3e15e8c6c39ced004b1a934c66ef250bf3df7a2f Mon Sep 17 00:00:00 2001 From: Umang Jain Date: Mon, 11 Jul 2022 16:28:34 +0530 Subject: utils: ipu3-unpack: Fix error string Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- utils/ipu3/ipu3-unpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') 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; } -- cgit v1.2.1