Message ID | 20220708222838.370187-2-umang.jain@ideasonboard.com |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Hi Umang, Thank you for the patch. On Sat, Jul 09, 2022 at 03:58:37AM +0530, Umang Jain via libcamera-devel wrote: > Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > --- > 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; > }
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; }
Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> --- utils/ipu3/ipu3-unpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)