diff options
Diffstat (limited to 'ext/standard/file.c')
| -rw-r--r-- | ext/standard/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index d45a3fb1a8..5d98e7a771 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -770,7 +770,7 @@ parse_eol: Create a unique filename in a directory */ PHP_FUNCTION(tempnam) { - pval **arg1, **arg2; + zval **arg1, **arg2; char *d; char *opened_path; char p[64]; @@ -1447,7 +1447,7 @@ PHP_FUNCTION(readfile) Return or change the umask */ PHP_FUNCTION(umask) { - pval **arg1; + zval **arg1; int oldumask; int arg_count = ZEND_NUM_ARGS(); |
