summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-16 08:11:46 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-16 08:11:46 +0200
commit634fdb75b5d087df769158063dde7c96c0d705f2 (patch)
tree53eb11b3e74ff4fc398acf4c8bb2dfd2530c8760 /sc
parent017d16bdc2b02af03a9c08bb162229ba391dfd6a (diff)
SAL_WARN itself already prints __FILE__ and __LINE__ of its call site
Change-Id: I214ee188793e7ef189417460ea32eeaf0a8b6a29
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/opencl/formulagroupcl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index a2c254c27c3d..10d9bcdff763 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -3687,7 +3687,7 @@ public:
if (err != CL_SUCCESS)
{
- SAL_WARN("sc.opencl", "Dynamic formula compiler: OpenCL error: " << err << " at " << __FILE__ << ":" << __LINE__);
+ SAL_WARN("sc.opencl", "Dynamic formula compiler: OpenCL error: " << err);
return false;
}
@@ -3696,7 +3696,7 @@ public:
err = clEnqueueUnmapMemObject(kEnv.mpkCmdQueue, res, resbuf, 0, NULL, NULL);
if (err != CL_SUCCESS)
{
- SAL_WARN("sc.opencl", "Dynamic formula compiler: OpenCL error: " << err << " at " << __FILE__ << ":" << __LINE__);
+ SAL_WARN("sc.opencl", "Dynamic formula compiler: OpenCL error: " << err);
return false;
}