summaryrefslogtreecommitdiffstats
path: root/lib/filechunking.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/filechunking.php')
-rw-r--r--lib/filechunking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filechunking.php b/lib/filechunking.php
index 5ab33c77ad7..55a4d730430 100644
--- a/lib/filechunking.php
+++ b/lib/filechunking.php
@@ -59,7 +59,7 @@ class OC_FileChunking {
for($i=0; $i < $this->info['chunkcount']; $i++) {
$chunk = $cache->get($prefix.$i);
$cache->remove($prefix.$i);
- $count += fwrite($f,$chunk);
+ $count += fwrite($f, $chunk);
}
return $count;
}