diff options
Diffstat (limited to 'ext/com_dotnet/com_saproxy.c')
| -rw-r--r-- | ext/com_dotnet/com_saproxy.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c index 09dce26061..4fff134178 100644 --- a/ext/com_dotnet/com_saproxy.c +++ b/ext/com_dotnet/com_saproxy.c @@ -514,15 +514,13 @@ static void saproxy_iter_get_key(zend_object_iterator *iter, zval *key)  	}  } -static int saproxy_iter_move_forwards(zend_object_iterator *iter) +static void saproxy_iter_move_forwards(zend_object_iterator *iter)  {  	php_com_saproxy_iter *I = (php_com_saproxy_iter*)Z_PTR(iter->data);  	if (++I->key >= I->imax) {  		I->key = -1; -		return FAILURE;  	} -	return SUCCESS;  }  static zend_object_iterator_funcs saproxy_iter_funcs = { | 
