[libcamera-devel] test: gstreamer: Fix redundant word in error message.
diff mbox series

Message ID 20220911180918.95019-1-rishikeshdonadkar@gmail.com
State Accepted
Commit 0a4d1b8d452ad8b3ab11e27c5497f8e5f6b2b20b
Headers show
Series
  • [libcamera-devel] test: gstreamer: Fix redundant word in error message.
Related show

Commit Message

Rishikesh Donadkar Sept. 11, 2022, 6:09 p.m. UTC
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(-)

Comments

Vedant Paranjape Sept. 12, 2022, 12:45 p.m. UTC | #1
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
>
Umang Jain Sept. 12, 2022, 4:04 p.m. UTC | #2
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
>>

Patch
diff mbox series

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;