diff options
Diffstat (limited to 'ext/standard/php_filestat.h')
-rw-r--r-- | ext/standard/php_filestat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_filestat.h b/ext/standard/php_filestat.h index 56f6e1bf52..d88421d951 100644 --- a/ext/standard/php_filestat.h +++ b/ext/standard/php_filestat.h @@ -53,7 +53,7 @@ PHP_FUNCTION(clearstatcache); #define MAKE_LONG_ZVAL_INCREF(name, val)\ MAKE_STD_ZVAL(name); \ - ZVAL_LONG(name,val); \ + ZVAL_LONG(name, val); \ name->refcount++; #ifdef PHP_WIN32 @@ -68,7 +68,7 @@ PHP_FUNCTION(clearstatcache); #define S_IXOTH S_IEXEC #undef getgid -#define getgroups(a,b) 0 +#define getgroups(a, b) 0 #define getgid() 1 #define getuid() 1 #endif |