diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-19 14:05:08 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-19 14:05:08 +0200 |
commit | b3b335480927a67f3019dfb9933b06e96b487179 (patch) | |
tree | 615c024122709fbafd903bdac1aedcc69c938f52 /lib/private/files/storage/local.php | |
parent | 5d7deefd95c3108ff4deb17d23e78b39dbe80ee3 (diff) | |
download | nextcloud-server-b3b335480927a67f3019dfb9933b06e96b487179.tar.gz nextcloud-server-b3b335480927a67f3019dfb9933b06e96b487179.zip |
move to public namespace
Diffstat (limited to 'lib/private/files/storage/local.php')
-rw-r--r-- | lib/private/files/storage/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index eeb7af5cd08..9df6cdef2af 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -218,7 +218,7 @@ if (\OC_Util::runningOnWindows()) { public function free_space($path) { $space = @disk_free_space($this->datadir . $path); if ($space === false || is_null($space)) { - return \OC\Files\Filesystem::SPACE_UNKNOWN; + return \OCP\Files\FileInfo::SPACE_UNKNOWN; } return $space; } |