From 85bfee8e542805ff7df67d9786bb291f7d2b34f3 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Fri, 23 Apr 2004 10:37:55 +0000 Subject: gcc 3.4 fixlet and kill a warning --- (limited to 'libopie2/opiecore/ofilenotify.cpp') 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 @@ -119,7 +119,7 @@ int OFileNotification::start( const QString& path, bool sshot, OFileNotification qWarning( "OFileNotification::start(): Can't subscribe to '%s': %s.", (const char*) dirpath, strerror( errno ) ); return -1; } - if ( !sshot ) (int) type |= (int) Multi; + if ( !sshot ) type = static_cast( (int) type | (int) Multi ); result = ::fcntl( fd, F_NOTIFY, type ); if ( result == -1 ) { @@ -299,6 +299,7 @@ bool OFileNotification::registerSignalHandler() return false; } qDebug( "OFileNotification::registerSignalHandler(): done" ); + return true; } -- cgit v0.9.0.2