[Libreoffice-commits] core.git: opencl/source

Tor Lillqvist tml at collabora.com
Thu Nov 27 05:42:26 PST 2014


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

New commits:
commit 79d6813609ffe05e4d8b678bc608fbfd1482aeb9
Author: Tor Lillqvist <tml at collabora.com>
Date:   Thu Nov 27 15:41:49 2014 +0200

    Use correct SAL_INFO log area
    
    Change-Id: I47e6dcf18fe141b8dba33a8c3cd83f80950045cd

diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index aa7a07a..dd50649 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -159,12 +159,12 @@ bool match(const OpenCLConfig::ImplMatcherSet& rList, const OpenCLPlatformInfo&
 {
     for (auto i = rList.cbegin(); i != rList.end(); ++i)
     {
-        SAL_INFO("sc.opencl", "Looking for match for platform=" << rPlatform << ", device=" << rDevice <<
+        SAL_INFO("opencl", "Looking for match for platform=" << rPlatform << ", device=" << rDevice <<
                  " in " << sKindOfList << " entry=" << *i);
 
         if (match(*i, rPlatform, rDevice))
         {
-            SAL_INFO("sc.opencl", "Match!");
+            SAL_INFO("opencl", "Match!");
             return true;
         }
     }


More information about the Libreoffice-commits mailing list