diff options
Diffstat (limited to 'ext/standard/filestat.c')
-rw-r--r-- | ext/standard/filestat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 4a33ea7ff5..0d904e38f3 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -173,7 +173,7 @@ PHP_FUNCTION(diskfreespace) } } else { - php3_error(E_WARNING, "Unable to load kernel32.dll"); + php_error(E_WARNING, "Unable to load kernel32.dll"); RETURN_FALSE; } @@ -591,7 +591,7 @@ function_entry php3_filestat_functions[] = { }; -php3_module_entry php3_filestat_module_entry = { +zend_module_entry php3_filestat_module_entry = { "PHP_filestat", php3_filestat_functions, NULL, NULL, PHP_RINIT(filestat), PHP_RSHUTDOWN(filestat), NULL, STANDARD_MODULE_PROPERTIES }; |