From 7f93b1f5fc3b8c0035b07dd5ffd7704ee7f38dcf Mon Sep 17 00:00:00 2001 From: csoler Date: Thu, 12 Jan 2012 20:56:36 +0000 Subject: [PATCH] added missing returns git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4787 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/services/p3banlist.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libretroshare/src/services/p3banlist.cc b/libretroshare/src/services/p3banlist.cc index 96803687e..cf8814426 100644 --- a/libretroshare/src/services/p3banlist.cc +++ b/libretroshare/src/services/p3banlist.cc @@ -336,6 +336,7 @@ int p3BanList::condenseBanSources_locked() printBanSet_locked(std::cerr); + return true ; } @@ -448,6 +449,7 @@ int p3BanList::printBanSet_locked(std::ostream &out) out << " Age: " << now - it->second.mTs; out << std::endl; } + return true ; } @@ -475,6 +477,7 @@ int p3BanList::printBanSources_locked(std::ostream &out) out << std::endl; } } + return true ; }