From 5314765410072e84c87f89c1b6cb939dae5174db Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Thu, 9 Oct 2014 15:54:57 +0200 Subject: [PATCH] fix compile --- src/mirall/discoveryphase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/discoveryphase.cpp b/src/mirall/discoveryphase.cpp index d72a0848a8..9a4a46219b 100644 --- a/src/mirall/discoveryphase.cpp +++ b/src/mirall/discoveryphase.cpp @@ -43,7 +43,7 @@ bool DiscoveryJob::isInBlackList(const QString& path) const return false; } --it; - Q_ASSERT(*it.endsWith(QLatin1Char('/'))); // SyncEngine::setSelectiveSyncBlackList makes sure of that + Q_ASSERT(it->endsWith(QLatin1Char('/'))); // SyncEngine::setSelectiveSyncBlackList makes sure of that if (pathSlash.startsWith(*it)) { return true; }