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
This commit is contained in:
Oliver Bolte
2007-07-18 11:22:45 +00:00
parent 90d09d7096
commit c5ebe21f2a

View File

@@ -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 =