Message ID | 20220911180918.95019-1-rishikeshdonadkar@gmail.com |
---|---|
State | Accepted |
Commit | 0a4d1b8d452ad8b3ab11e27c5497f8e5f6b2b20b |
Headers | show |
Series |
|
Related | show |
Hello Rishikesh, Thanks for the patch. On Sun, Sep 11, 2022 at 11:39 PM Rishikesh Donadkar <rishikeshdonadkar@gmail.com> wrote: > > Fix redundant "create" in the error message. > > Signed-off-by: Rishikesh Donadkar <rishikeshdonadkar@gmail.com> Reviewed-by: Vedant Paranjape <vedantparanjape160201@gmail.com> > --- > test/gstreamer/gstreamer_test.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/test/gstreamer/gstreamer_test.cpp b/test/gstreamer/gstreamer_test.cpp > index 4947b7bb..66cc2166 100644 > --- a/test/gstreamer/gstreamer_test.cpp > +++ b/test/gstreamer/gstreamer_test.cpp > @@ -115,7 +115,7 @@ int GstreamerTest::createPipeline() > pipeline_ = gst_pipeline_new("test-pipeline"); > > if (!libcameraSrc_ || !pipeline_) { > - g_printerr("Unable to create create pipeline %p.%p\n", > + g_printerr("Unable to create pipeline %p.%p\n", > libcameraSrc_, pipeline_); > > return TestFail; > -- > 2.25.1 >
Hi Rishi Thank you for the patch On 9/12/22 6:15 PM, Vedant Paranjape wrote: > Hello Rishikesh, > > Thanks for the patch. > > > On Sun, Sep 11, 2022 at 11:39 PM Rishikesh Donadkar > <rishikeshdonadkar@gmail.com> wrote: >> Fix redundant "create" in the error message. >> >> Signed-off-by: Rishikesh Donadkar <rishikeshdonadkar@gmail.com> > Reviewed-by: Vedant Paranjape <vedantparanjape160201@gmail.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> >> --- >> test/gstreamer/gstreamer_test.cpp | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/test/gstreamer/gstreamer_test.cpp b/test/gstreamer/gstreamer_test.cpp >> index 4947b7bb..66cc2166 100644 >> --- a/test/gstreamer/gstreamer_test.cpp >> +++ b/test/gstreamer/gstreamer_test.cpp >> @@ -115,7 +115,7 @@ int GstreamerTest::createPipeline() >> pipeline_ = gst_pipeline_new("test-pipeline"); >> >> if (!libcameraSrc_ || !pipeline_) { >> - g_printerr("Unable to create create pipeline %p.%p\n", >> + g_printerr("Unable to create pipeline %p.%p\n", >> libcameraSrc_, pipeline_); >> >> return TestFail; >> -- >> 2.25.1 >>
diff --git a/test/gstreamer/gstreamer_test.cpp b/test/gstreamer/gstreamer_test.cpp index 4947b7bb..66cc2166 100644 --- a/test/gstreamer/gstreamer_test.cpp +++ b/test/gstreamer/gstreamer_test.cpp @@ -115,7 +115,7 @@ int GstreamerTest::createPipeline() pipeline_ = gst_pipeline_new("test-pipeline"); if (!libcameraSrc_ || !pipeline_) { - g_printerr("Unable to create create pipeline %p.%p\n", + g_printerr("Unable to create pipeline %p.%p\n", libcameraSrc_, pipeline_); return TestFail;
Fix redundant "create" in the error message. Signed-off-by: Rishikesh Donadkar <rishikeshdonadkar@gmail.com> --- test/gstreamer/gstreamer_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)