From: Michael Andres Date: Tue, 8 May 2007 18:45:46 +0000 (+0000) Subject: fixed missing return value X-Git-Tag: BASE-SuSE-Linux-10_3-Branch~783 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=082cab1b86ac4ff05cb73f7e84e65d280dd8947a;p=platform%2Fupstream%2Flibzypp.git fixed missing return value --- diff --git a/zypp/base/UserRequestException.cc b/zypp/base/UserRequestException.cc index 2de49f7..35422d9 100644 --- a/zypp/base/UserRequestException.cc +++ b/zypp/base/UserRequestException.cc @@ -49,7 +49,7 @@ namespace zypp case ABORT: str << "ABORT"; break; // no default ! } - str << " reqest: " << msg(); + return str << " reqest: " << msg(); } /////////////////////////////////////////////////////////////////