From 6a4ae63f144e7dc47bdcdd78213725a8063f6135 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 7 Feb 2017 19:22:04 +0100 Subject: [PATCH] CentOS: Another fix for old compiler version (2) --- src/libsync/discoveryphase.cpp | 2 +- src/libsync/discoveryphase.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsync/discoveryphase.cpp b/src/libsync/discoveryphase.cpp index dd1e234b6..8ee11ac6c 100644 --- a/src/libsync/discoveryphase.cpp +++ b/src/libsync/discoveryphase.cpp @@ -244,7 +244,7 @@ int get_errno_from_http_errcode( int err, const QString & reason ) { DiscoverySingleDirectoryJob::DiscoverySingleDirectoryJob(const AccountPtr &account, const QString &path, QObject *parent) - : QObject(parent), _subPath(path), _account(account), _ignoredFirst(false), _isRootPath(false) + : QObject(parent), _subPath(path), _account(account), _ignoredFirst(false), _isRootPath(false), _isExternalStorage(false) { } diff --git a/src/libsync/discoveryphase.h b/src/libsync/discoveryphase.h index 37e9e6c5c..3bccf6a4a 100644 --- a/src/libsync/discoveryphase.h +++ b/src/libsync/discoveryphase.h @@ -118,7 +118,7 @@ private: // Set to true if this is the root path and we need to check the data-fingerprint bool _isRootPath; // If this directory is an external storage (The first item has 'M' in its permission) - bool _isExternalStorage = false; + bool _isExternalStorage; QPointer _lsColJob; public: -- 2.30.2