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
commit09ee5944abefce8a070b7b06b21d5291b8f5bc4c (patch)
treefc1e235453f635934bf41f8f2cffdf4c47e6bb4a
parent169c5dc2b7a19d1fac7e9517dcffc58076ca6779 (diff)
downloadphp-git-09ee5944abefce8a070b7b06b21d5291b8f5bc4c.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,