Fix gcc warnings

Esse commit está contido em:
Jakub Zelenka
2013-09-18 19:26:01 +01:00
commit 0b35c3043f
+1 -3
Ver Arquivo
@@ -1196,7 +1196,7 @@ static char *php_fann_get_path_for_open(char *path, int path_len, int read TSRML
path_for_open = NULL;
}
else
php_stream_locate_url_wrapper(path, &path_for_open, 0 TSRMLS_CC);
php_stream_locate_url_wrapper((const char *) path, (const char **) &path_for_open, 0 TSRMLS_CC);
return path_for_open;
}
/* }}} */
@@ -2351,8 +2351,6 @@ PHP_FUNCTION(fann_clear_scaling_params)
}
/* }}} */
/* {{{ php_fann_return_array
/* {{{ proto array fann_scale_input(resource ann, array input_vector)
Scales data in input vector before feed it to ann based on previously calculated parameters */
PHP_FUNCTION(fann_scale_input)