summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-11 10:07:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-11 10:07:47 +0200
commit015c00b62f948920e7fc9eb280420cf2558b8fa8 (patch)
treef4c967c025f650c1a4f6d62f9d8af0b5271d71da /tools
parent2d30d16e1314883fdd02f0dda0a1115799320299 (diff)
-Werror,-Wunused-variable
Change-Id: Ia49c97f3ccecf42852e21f0a3690352b9620e16c
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/strmunx.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx
index 24eaceecd37d..d3b44dfdd436 100644
--- a/tools/source/stream/strmunx.cxx
+++ b/tools/source/stream/strmunx.cxx
@@ -494,9 +494,9 @@ void SvFileStream::Open( const OUString& rFilename, StreamMode nOpenMode )
eStreamMode &= ~STREAM_TRUNC; // don't truncat on reopen
aFilename = rFilename;
- OString aLocalFilename(OUStringToOString(aFilename, osl_getThreadTextEncoding()));
#ifdef DBG_UTIL
+ OString aLocalFilename(OUStringToOString(aFilename, osl_getThreadTextEncoding()));
OStringBuffer aTraceStr("SvFileStream::Open(): ");
aTraceStr.append(aLocalFilename);
OSL_TRACE( "%s", aTraceStr.getStr() );