Skip to content

Commit

Permalink
Replaced PCHAR by CHAR * (not defined in pi3web_sapi header)
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Zimmermann committed Jun 26, 2005
1 parent 8301424 commit 313ace0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sapi/pi3web/pi3web_sapi.c
Expand Up @@ -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; };

Expand Down Expand Up @@ -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; };

Expand Down

0 comments on commit 313ace0

Please sign in to comment.