diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2023-03-18 12:25:23 +0200 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2023-03-18 10:28:35 +0000 |
commit | 3e6c9ff68fafadc3d445720df2438d4e370cc816 (patch) | |
tree | ebc2a6b167d837243ce6ca9489a497dbe911e7e0 | |
parent | 3086565a02ec85ff43be641bd2b7b1a499bb4968 (diff) |
bridges: add whitespace to SAL_INFO
Missed in 7a8ec6cddc9f37ba6ff1a98ad39702521c8fb36b
Change-Id: I70b73873f20814d25c34f326a6552e72f57b3e28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149081
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx index 9fa6810d44da..9bce77bc8468 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx @@ -156,7 +156,7 @@ std::type_info * RTTI::getRTTI(typelib_TypeDescription const & pTypeDescr) // the symbol is prefixed with _ZTI char const * rttiName = symName.getStr() +4; - SAL_INFO("bridges", "Generated rtti for" << rttiName); + SAL_INFO("bridges", "Generated rtti for " << rttiName); std::unique_ptr<Generated> newRtti; switch (pTypeDescr.eTypeClass) { |