diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-19 10:59:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-19 11:00:03 +0100 |
commit | 8ee1a76b735acd39861f13a0dbb9c56f8eec96f4 (patch) | |
tree | 2fd0c0481d26908460df741dab864e55f890331f /sal/rtl | |
parent | f233f3973631c664e0953f04f88a58234390c088 (diff) |
-Werror=shadow and -Werror=sign-promo fixes
Diffstat (limited to 'sal/rtl')
-rw-r--r-- | sal/rtl/source/logfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/logfile.cxx b/sal/rtl/source/logfile.cxx index 7a267eab9cd3..7229a5956fce 100644 --- a/sal/rtl/source/logfile.cxx +++ b/sal/rtl/source/logfile.cxx @@ -185,7 +185,7 @@ void init() { { SAL_WARN( "sal", - "Couldn't open logfile " << o << '(' << e << ')'); + "Couldn't open logfile " << o << '(' << +e << ')'); } } g_bHasBeenCalled = sal_True; |