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:
authorChristian Kamm <kamm@incasoftware.de>2014-11-07 12:53:41 +0300
committerChristian Kamm <kamm@incasoftware.de>2014-11-20 14:51:16 +0300
commit6d09f1b6c0def213fe8ffa2e3bfa91151b62efb6 (patch)
tree245e634ca71361e711f46fbfa6a01ed73c7f907d /src/gui/folderwatcher_linux.cpp
parent1ada20ac7b50e5480036c9906199219df13328f4 (diff)
Folder watcher now reports changing paths instead of dirs.
Diffstat (limited to 'src/gui/folderwatcher_linux.cpp')
-rw-r--r--src/gui/folderwatcher_linux.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/folderwatcher_linux.cpp b/src/gui/folderwatcher_linux.cpp
index 61321f9d3..437de51b0 100644
--- a/src/gui/folderwatcher_linux.cpp
+++ b/src/gui/folderwatcher_linux.cpp
@@ -159,7 +159,6 @@ void FolderWatcherPrivate::slotReceivedNotification(int fd)
while(i + sizeof(struct inotify_event) < static_cast<unsigned int>(len)) {
// cast an inotify_event
event = (struct inotify_event*)&buffer[i];
- // with the help of watch descriptor, retrieve, corresponding INotify
if (event == NULL) {
qDebug() << "NULL event";
i += sizeof(struct inotify_event);