Skip to content

Commit

Permalink
Fix [-Wunused-but-set-variable]
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jan 8, 2014
1 parent 90f523b commit a13a9dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions configs/yaf_config_ini.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ static inline yaf_deep_copy_section(zval *dst, zval *src TSRMLS_DC) {
/** {{{ zval * yaf_config_ini_format(yaf_config_t *instance, zval **ppzval TSRMLS_DC)
*/
zval * yaf_config_ini_format(yaf_config_t *instance, zval **ppzval TSRMLS_DC) {
zval *readonly, *ret;
readonly = zend_read_property(yaf_config_ini_ce, instance, ZEND_STRL(YAF_CONFIG_PROPERT_NAME_READONLY), 1 TSRMLS_CC);
zval *ret;
ret = yaf_config_ini_instance(NULL, *ppzval, NULL TSRMLS_CC);
return ret;
}
Expand Down

0 comments on commit a13a9dc

Please sign in to comment.