diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 11:11:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:11:43 +0100 |
commit | 6455415c7c97967caa85e455e607876b03dc5ce1 (patch) | |
tree | 082b5901ea79b551d3d8eeae0558985dcb6016e8 /bridges | |
parent | 2c5b0bb34536481a576db28528889d3513dc2fea (diff) |
Use proper bool operations
Change-Id: Ibd904ce1061814e06cd64db607de6f5cfeed1c2a
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx index 9fb14a90082c..17f72e438d88 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx @@ -299,7 +299,7 @@ bool x86_64::return_in_hidden_param( typelib_TypeDescriptionReference *pTypeRef { int g, s; - return examine_argument( pTypeRef, true, g, s ) == 0; + return !examine_argument( pTypeRef, true, g, s ); } void x86_64::fill_struct( typelib_TypeDescriptionReference *pTypeRef, const sal_uInt64 *pGPR, const double *pSSE, void *pStruct ) throw () |