summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-11-21 18:38:38 +0100
committerMichael Stahl <mstahl@redhat.com>2014-11-25 12:38:53 +0100
commit9e3f12cdfa32ae3a6252d6942a1da4812db786c2 (patch)
treeb0d88e585cb99ed3d591a29754f38de0dbf0b352 /bridges
parentcdc1a193533c63b564e1342d215c351739782c8d (diff)
bridges: oops some semicolons got lost
Change-Id: I5c2f9286067237ec1a9df6a47009e25e82ea7f63 (cherry picked from commit 04a7e55b486d4da83434ce6c81036b3fcf7be469)
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/except.cxx4
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
{