From: Holger Zimmermann Date: Sun, 26 Jun 2005 09:17:40 +0000 (+0000) Subject: Replaced PCHAR by CHAR * (not defined in pi3web_sapi header) X-Git-Tag: php-4.4.0RC2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=313ace007d776a42480bb054273064dee5560868;p=php Replaced PCHAR by CHAR * (not defined in pi3web_sapi header) --- diff --git a/sapi/pi3web/pi3web_sapi.c b/sapi/pi3web/pi3web_sapi.c index 944403efa1..1cb9986a8e 100644 --- a/sapi/pi3web/pi3web_sapi.c +++ b/sapi/pi3web/pi3web_sapi.c @@ -82,7 +82,7 @@ static void php_info_pi3web(ZEND_MODULE_INFO_FUNC_ARGS) /* --- loop over all registered server variables --- */ for(; pIter && PIDBIterator_atValidElement( pIter ); PIDBIterator_next( pIter ) ) { - PCHAR pKey; + CHAR *pKey; PIDBIterator_current( pIter, &pKey ); if ( !pKey ) { /* sanity */ continue; }; @@ -289,7 +289,7 @@ static void sapi_pi3web_register_variables(zval *track_vars_array TSRMLS_DC) /* --- loop over all registered server variables --- */ for(; pIter && PIDBIterator_atValidElement( pIter ); PIDBIterator_next( pIter ) ) { - PCHAR pKey; + CHAR *pKey; PIDBIterator_current( pIter, &pKey ); if ( !pKey ) { /* sanity */ continue; };