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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-09-20 11:39:25 +0300
committerHannah von Reth <vonreth@kde.org>2021-09-21 12:03:56 +0300
commit4139d5ca60f3cc3d3353c8b3fcf7e59ca80ba31c (patch)
tree0788831524191a7a81470bd6d34841fcc7cb34f3 /src/libsync
parentedc0cce712cf05d872d41161184a511fff022f2a (diff)
Allow up to 20000 sync issues
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/syncengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp
index e3bb75f65..497e8a86c 100644
--- a/src/libsync/syncengine.cpp
+++ b/src/libsync/syncengine.cpp
@@ -394,7 +394,7 @@ void SyncEngine::startSync()
finalize(false);
return;
} else {
- qCInfo(lcEngine) << "There are" << freeBytes << "bytes available at" << _localPath;
+ qCInfo(lcEngine) << "There are" << Utility::octetsToString(freeBytes) << "available at" << _localPath;
}
} else {
qCWarning(lcEngine) << "Could not determine free space available at" << _localPath;