summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/ofilenotify.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiecore/ofilenotify.cpp b/libopie2/opiecore/ofilenotify.cpp
index 5f2a1cc..b576c4f 100644
--- a/libopie2/opiecore/ofilenotify.cpp
+++ b/libopie2/opiecore/ofilenotify.cpp
@@ -121,3 +121,3 @@ int OFileNotification::start( const QString& path, bool sshot, OFileNotification
}
- if ( !sshot ) (int) type |= (int) Multi;
+ if ( !sshot ) type = static_cast<OFileNotificationType>( (int) type | (int) Multi );
result = ::fcntl( fd, F_NOTIFY, type );
@@ -301,2 +301,3 @@ bool OFileNotification::registerSignalHandler()
qDebug( "OFileNotification::registerSignalHandler(): done" );
+ return true;
}