summaryrefslogtreecommitdiffstats
path: root/lib/filechunking.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
commit6a00a6b9ed49f9a9da044772e7ca7f3506672100 (patch)
tree2c0b0a57af5befe1c8153296cbcad3ff7c6ff4cf /lib/filechunking.php
parent03581ef463184081f8faa3f86bb6d21ee8bbc66d (diff)
downloadnextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.tar.gz
nextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.zip
Make Jenkins more happy.
This is NoSpaceAfterComma
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;
}