diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-21 18:38:38 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-21 18:39:39 +0100 |
commit | 04a7e55b486d4da83434ce6c81036b3fcf7be469 (patch) | |
tree | 63a4fa14976896ffe981141ca8b6a46d94795830 /bridges | |
parent | 5009ed5eaff6769375d8d0423a98fe8d1a31e0d1 (diff) |
bridges: oops some semicolons got lost
Change-Id: I5c2f9286067237ec1a9df6a47009e25e82ea7f63
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_arm/except.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_arm/except.cxx b/bridges/source/cpp_uno/gcc3_linux_arm/except.cxx index 675187cc1e97..23ebca512cc7 100644 --- a/bridges/source/cpp_uno/gcc3_linux_arm/except.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_arm/except.cxx @@ -309,7 +309,7 @@ namespace CPPU_CURRENT_NAMESPACE RuntimeException aRE( "no exception header!" ); Type const & rType = ::getCppuType( &aRE ); uno_type_any_constructAndConvert( pUnoExc, &aRE, rType.getTypeLibType(), pCpp2Uno ); - SAL_WARN("bridges", aRE.Message) + SAL_WARN("bridges", aRE.Message); return; } @@ -325,7 +325,7 @@ namespace CPPU_CURRENT_NAMESPACE RuntimeException aRE( OUString("exception type not found: ") + unoName ); Type const & rType = ::getCppuType( &aRE ); uno_type_any_constructAndConvert( pUnoExc, &aRE, rType.getTypeLibType(), pCpp2Uno ); - SAL_WARN("bridges", aRE.Message) + SAL_WARN("bridges", aRE.Message); } else { |