-rw-r--r-- | libopie2/opiecore/ofilenotify.cpp | 3 |
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 | |||
@@ -116,13 +116,13 @@ int OFileNotification::start( const QString& path, bool sshot, OFileNotification | |||
116 | result = ::fcntl( fd, F_SETSIG, SIGRTMIN ); | 116 | result = ::fcntl( fd, F_SETSIG, SIGRTMIN ); |
117 | if ( result == -1 ) | 117 | if ( result == -1 ) |
118 | { | 118 | { |
119 | qWarning( "OFileNotification::start(): Can't subscribe to '%s': %s.", (const char*) dirpath, strerror( errno ) ); | 119 | qWarning( "OFileNotification::start(): Can't subscribe to '%s': %s.", (const char*) dirpath, strerror( errno ) ); |
120 | return -1; | 120 | return -1; |
121 | } | 121 | } |
122 | if ( !sshot ) (int) type |= (int) Multi; | 122 | if ( !sshot ) type = static_cast<OFileNotificationType>( (int) type | (int) Multi ); |
123 | result = ::fcntl( fd, F_NOTIFY, type ); | 123 | result = ::fcntl( fd, F_NOTIFY, type ); |
124 | if ( result == -1 ) | 124 | if ( result == -1 ) |
125 | { | 125 | { |
126 | qWarning( "OFileNotification::start(): Can't subscribe to '%s': %s.", (const char*) dirpath, strerror( errno ) ); | 126 | qWarning( "OFileNotification::start(): Can't subscribe to '%s': %s.", (const char*) dirpath, strerror( errno ) ); |
127 | return -1; | 127 | return -1; |
128 | } | 128 | } |
@@ -296,12 +296,13 @@ bool OFileNotification::registerSignalHandler() | |||
296 | if ( ::sigaction( SIGRTMIN, &act, NULL ) == -1 ) | 296 | if ( ::sigaction( SIGRTMIN, &act, NULL ) == -1 ) |
297 | { | 297 | { |
298 | qWarning( "OFileNotification::registerSignalHandler(): couldn't register signal handler: %s", strerror( errno ) ); | 298 | qWarning( "OFileNotification::registerSignalHandler(): couldn't register signal handler: %s", strerror( errno ) ); |
299 | return false; | 299 | return false; |
300 | } | 300 | } |
301 | qDebug( "OFileNotification::registerSignalHandler(): done" ); | 301 | qDebug( "OFileNotification::registerSignalHandler(): done" ); |
302 | return true; | ||
302 | } | 303 | } |
303 | 304 | ||
304 | 305 | ||
305 | void OFileNotification::unregisterSignalHandler() | 306 | void OFileNotification::unregisterSignalHandler() |
306 | { | 307 | { |
307 | struct sigaction act; | 308 | struct sigaction act; |