sc/source/core/opencl/op_math.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9179d008ab6b0f7996225b16723e5e7cf96bd5be
Author:     Bogdan Buzea <buzea.bog...@libreoffice.org>
AuthorDate: Wed Jan 1 16:51:40 2025 +0100
Commit:     Hossein <hoss...@libreoffice.org>
CommitDate: Mon Feb 3 21:43:38 2025 +0100

    Fix code typo: multiple ; in opencl/
    
    Change-Id: I03a1bfd03de7c3ff9b28456c2a6c8074a5ebd20c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179592
    Reviewed-by: Hossein   <hoss...@libreoffice.org>
    Tested-by: Jenkins

diff --git a/sc/source/core/opencl/op_math.cxx 
b/sc/source/core/opencl/op_math.cxx
index d0e033f8843b..75475bc5f054 100644
--- a/sc/source/core/opencl/op_math.cxx
+++ b/sc/source/core/opencl/op_math.cxx
@@ -258,7 +258,7 @@ void OpSqrtPi::GenerateCode( outputstream& ss ) const
 
 void OpDeg::GenerateCode( outputstream& ss ) const
 {
-    ss << "    return arg0 / M_PI * 180;;
";
+    ss << "    return arg0 / M_PI * 180;
";
 }
 
 void OpFact::GenerateCode( outputstream& ss ) const
@@ -571,7 +571,7 @@ void OpLog::GenSlidingWindowFunction(outputstream &ss,
     ss << "    int gid0 = get_global_id(0);
";
     GenerateArg( "arg0", 0, vSubArguments, ss );
     GenerateArgWithDefault( "arg1", 1, 10, vSubArguments, ss );
-    ss << "    return log10(arg0)/log10(arg1);;
";
+    ss << "    return log10(arg0)/log10(arg1);
";
     ss << "}";
 }
 

Reply via email to