summaryrefslogtreecommitdiff
path: root/ext/standard/file.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-05 22:54:01 +0000
committerfoobar <sniper@php.net>2005-12-05 22:54:01 +0000
commitd0a54af4c5046aa0909d958b8b8247434f94f15c (patch)
treebbe37ec826392ec39bd5fad0ce1625623922588d /ext/standard/file.c
parentf20a62b1644abb3cd17bf2613252f14e84fa2ce2 (diff)
downloadphp-git-d0a54af4c5046aa0909d958b8b8247434f94f15c.tar.gz
MFH: Nuke php3 legacy
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r--ext/standard/file.c4
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();