summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-04-12 01:56:03 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2019-04-12 01:59:17 +0200
commit74288f5af28de3d14044c951e7e5d62bb2e22301 (patch)
tree75533ff76de19399da663ba71cb18c96d3dd1c65
parent238cadd315901cbacfd9304bb1205e9f53f13eae (diff)
Fix build after 9be7991df15da9d4d954eeac1ec342ad1a2b7467
Change-Id: Ie4b756000c478a2e0a745571c6eda021665406b4 Reviewed-on: https://gerrit.libreoffice.org/70616 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--include/comphelper/windowsdebugoutput.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/windowsdebugoutput.hxx b/include/comphelper/windowsdebugoutput.hxx
index 7033b811a66c..45a38d007bc3 100644
--- a/include/comphelper/windowsdebugoutput.hxx
+++ b/include/comphelper/windowsdebugoutput.hxx
@@ -424,7 +424,7 @@ inline std::basic_ostream<charT, traits>& operator<<(std::basic_ostream<charT, t
stream << "(null)";
else
stream << std::wstring_convert<std::codecvt_utf8<wchar_t>, wchar_t>().to_bytes(
- rVariant.bstrVal));
+ rVariant.bstrVal);
break;
case VT_DISPATCH:
stream << rVariant.pdispVal;