diff options
author | Thies C. Arntzen <thies@php.net> | 2000-10-29 09:14:55 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-10-29 09:14:55 +0000 |
commit | 825457ae64db20d0a35a272465e9a1dc1cf64e61 (patch) | |
tree | 11a3e17978b78b51fda5807eb5db8e3b847f3e3e /ext/standard/filestat.c | |
parent | fc4b704fcaecc12dec7a178502670903d8a89bfb (diff) | |
download | php-git-825457ae64db20d0a35a272465e9a1dc1cf64e61.tar.gz |
update my email.
Diffstat (limited to 'ext/standard/filestat.c')
-rw-r--r-- | ext/standard/filestat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 784ef3079d..71b88c8e9b 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -180,7 +180,7 @@ PHP_FUNCTION(diskfreespace) &TotalNumberOfBytes, &TotalNumberOfFreeBytes) == 0) RETURN_FALSE; - /* i know - this is ugly, but i works (thies@digicol.de) */ + /* i know - this is ugly, but i works (thies@thieso.net) */ bytesfree = FreeBytesAvailableToCaller.HighPart * (double) (((unsigned long)1) << 31) * 2.0 + FreeBytesAvailableToCaller.LowPart; |