diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-21 21:59:27 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-21 21:59:27 +0000 |
commit | 03f7406711d3706af0f237e1ea03974616dd2139 (patch) | |
tree | ba3ca1e4e498ea528224fa9033ff966c3f8649a5 /ext/standard/filestat.c | |
parent | 8f01638bf6a63692e0ce4fdb637359e376e61e7a (diff) | |
download | php-git-03f7406711d3706af0f237e1ea03974616dd2139.tar.gz |
proto fixes "double" -> "float"
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 6654641130..4f2921f755 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -125,7 +125,7 @@ PHP_RSHUTDOWN_FUNCTION(filestat) { return SUCCESS; } -/* {{{ proto double disk_total_space(string path) +/* {{{ proto float disk_total_space(string path) Get total disk space for filesystem that path is on */ PHP_FUNCTION(disk_total_space) { @@ -228,7 +228,7 @@ PHP_FUNCTION(disk_total_space) } /* }}} */ -/* {{{ proto double disk_free_space(string path) +/* {{{ proto float disk_free_space(string path) Get free disk space for filesystem that path is on */ PHP_FUNCTION(disk_free_space) { |