From: Michael Andres Date: Thu, 9 Jun 2011 07:35:30 +0000 (+0200) Subject: Fix missing return value. X-Git-Tag: 9.8.1~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc2554ddbba54c6d94cdbf2641ed18191c602a53;p=platform%2Fupstream%2Flibzypp.git Fix missing return value. --- diff --git a/zypp/ZYppCommitResult.h b/zypp/ZYppCommitResult.h index 96a0133..2ff53d0 100644 --- a/zypp/ZYppCommitResult.h +++ b/zypp/ZYppCommitResult.h @@ -154,11 +154,11 @@ namespace zypp //@{ /** Whether all steps were performed successfully (none skipped or error) */ bool allDone() const - { transaction().actionEmpty( ~sat::Transaction::STEP_DONE );} + { return transaction().actionEmpty( ~sat::Transaction::STEP_DONE ); } /** Whether an error ocurred (skipped streps are ok). */ bool noError() const - { return transaction().actionEmpty( sat::Transaction::STEP_ERROR );} + { return transaction().actionEmpty( sat::Transaction::STEP_ERROR ); } //@} public: