diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:22:45 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:22:45 +0000 |
commit | c5ebe21f2a360eb053f19914f57510952a0c02d6 (patch) | |
tree | 7f5958bdb08c4d2ef15f219f00f6ae7f6b94114d /cppu | |
parent | 90d09d7096ed4ed63e73f65d7bf81ae273da76d2 (diff) |
INTEGRATION: CWS unomacli64 (1.36.2); FILE MERGED
2007/06/05 15:06:18 kr 1.36.2.1: #i77422# Use va_list * instead of plain type
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/uno/lbenv.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx index c5d0915fd40a..7f45009cbf1b 100644 --- a/cppu/source/uno/lbenv.cxx +++ b/cppu/source/uno/lbenv.cxx @@ -4,9 +4,9 @@ * * $RCSfile: lbenv.cxx,v $ * - * $Revision: 1.36 $ + * $Revision: 1.37 $ * - * last change: $Author: kz $ $Date: 2007-05-09 13:39:11 $ + * last change: $Author: obo $ $Date: 2007-07-18 12:22:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -375,10 +375,10 @@ static void SAL_CALL defenv_registerProxyInterface( } //------------------------------------------------------------------------------ -static void SAL_CALL s_stub_defenv_revokeInterface(va_list param) +static void SAL_CALL s_stub_defenv_revokeInterface(va_list * pParam) { - uno_ExtEnvironment * pEnv = va_arg(param, uno_ExtEnvironment *); - void * pInterface = va_arg(param, void *); + uno_ExtEnvironment * pEnv = va_arg(*pParam, uno_ExtEnvironment *); + void * pInterface = va_arg(*pParam, void *); OSL_ENSURE( pEnv && pInterface, "### null ptr!" ); uno_DefaultEnvironment * that = |