summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2011-02-08 08:40:39 +0000
committerAntony Dovgal <tony2001@php.net>2011-02-08 08:40:39 +0000
commit2cfc526bcb53538614948ec4e01de952e41314b9 (patch)
tree65bbd57972f95118978454ee09f7251459e1c1e6
parent5b521b71a2c58bc63e892981836414197b35c817 (diff)
downloadphp-git-2cfc526bcb53538614948ec4e01de952e41314b9.tar.gz
fix compile warning
-rw-r--r--sapi/fpm/fpm/fpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/fpm/fpm/fpm.c b/sapi/fpm/fpm/fpm.c
index f9d2a75b6d..0cfaabd414 100644
--- a/sapi/fpm/fpm/fpm.c
+++ b/sapi/fpm/fpm/fpm.c
@@ -23,7 +23,7 @@
struct fpm_globals_s fpm_globals = {
.parent_pid = 0,
- .argc = NULL,
+ .argc = 0,
.argv = NULL,
.config = NULL,
.prefix = NULL,