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:
-rw-r--r--src/libsync/filesystem.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsync/filesystem.cpp b/src/libsync/filesystem.cpp
index af0b1a71a..7cb63092d 100644
--- a/src/libsync/filesystem.cpp
+++ b/src/libsync/filesystem.cpp
@@ -82,8 +82,7 @@ bool FileSystem::setModTime(const QString &filename, time_t modTime)
int rc = c_utimes(filename, times);
if (rc != 0) {
qCWarning(lcFileSystem) << "Error setting mtime for" << filename
- << "failed: rc" << rc << ", errno:" << errno
- << ", strerr: " << strerror(errno);
+ << "failed: rc" << rc << ", error message:" << strerror(errno);
Q_ASSERT(false);
return false;
}