Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Zeller <git@markuszeller.com>2022-06-12 16:01:22 +0300
committerMarkus Zeller <git@markuszeller.com>2022-11-07 18:44:47 +0300
commit15289f9737ac0b30e2f617e310691766282c27c7 (patch)
tree6c4054b99d32552b03d4ea8be8dba5f61ea5a5ae
parentebbc0faf6c3cfb23a7c97b2df1012000964972bc (diff)
Cast to int #32837
Signed-off-by: Markus Zeller <git@markuszeller.com>
-rw-r--r--apps/files/lib/Command/Scan.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/Scan.php b/apps/files/lib/Command/Scan.php
index f1596fa98a5..710c76de493 100644
--- a/apps/files/lib/Command/Scan.php
+++ b/apps/files/lib/Command/Scan.php
@@ -306,7 +306,7 @@ class Scan extends Base {
* @return string
*/
protected function formatExecTime() {
- $secs = round($this->execTime);
+ $secs = (int)round($this->execTime);
# convert seconds into HH:MM:SS form
return sprintf('%02d:%02d:%02d', (int)($secs / 3600), ((int)($secs / 60) % 60), $secs % 60);
}