diff -r 15018f1726c7 -r 3eacc0623088 featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp --- a/featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp Fri Mar 19 10:00:55 2010 +0200 +++ b/featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp Fri Apr 16 16:49:27 2010 +0300 @@ -384,16 +384,12 @@ // RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&) // ----------------------------------------------------------------------------- // -TInt RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus ) +void RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus ) { TPckgBuf pckg; - TInt retval( KErrNone ); - - iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) ); - TIpcArgs args( &iFeaturePckg ); - SendReceive( EFeatMgrReqNotify, args, aStatus ); - - return retval; + iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) ); + TIpcArgs args( &iFeaturePckg ); + SendReceive( EFeatMgrReqNotify, args, aStatus ); } // -----------------------------------------------------------------------------