Skip to content

Commit 43ec708

Browse files
author
Jerome Loyet
committed
- Comment unused function to avoid warnings
1 parent 773e85a commit 43ec708

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sapi/fpm/fpm/fpm_conf.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@
5353

5454
static int fpm_conf_load_ini_file(char *filename TSRMLS_DC);
5555
static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset);
56+
#if 0 /* not used for now */
5657
static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset);
58+
#endif
5759
static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset);
5860
static char *fpm_conf_set_boolean(zval *value, void **config, intptr_t offset);
5961
static char *fpm_conf_set_string(zval *value, void **config, intptr_t offset);
@@ -242,6 +244,7 @@ static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset) /
242244
}
243245
/* }}} */
244246

247+
#if 0 /* not used for now */
245248
static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset) /* {{{ */
246249
{
247250
char *val = Z_STRVAL_P(value);
@@ -257,6 +260,7 @@ static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset) /* {
257260
return NULL;
258261
}
259262
/* }}} */
263+
#endif
260264

261265
static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset) /* {{{ */
262266
{

0 commit comments

Comments
 (0)