aboutsummaryrefslogtreecommitdiffstats
path: root/lib/history/ephy-history-service.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-03-08 05:16:39 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-03-08 05:17:54 +0800
commita1ad3f932f94d52b496d5e717884918f03dcfd16 (patch)
tree0dd9a60a9d3bbcde8da8c03b7cd91308d15658be /lib/history/ephy-history-service.c
parent161c78698fcce7a6cad9a562691dd51ec087265c (diff)
downloadgsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.gz
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.bz2
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.lz
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.xz
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.zst
gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.zip
ephy-history-service: execute_get_hosts() should return TRUE
If there are no hosts, that's not a failure, so return TRUE instead.
Diffstat (limited to 'lib/history/ephy-history-service.c')
-rw-r--r--lib/history/ephy-history-service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c
index 54af56a70..ca656c793 100644
--- a/lib/history/ephy-history-service.c
+++ b/lib/history/ephy-history-service.c
@@ -529,7 +529,7 @@ ephy_history_service_execute_get_hosts (EphyHistoryService *self,
hosts = ephy_history_service_get_all_hosts (self);
*results = hosts;
- return hosts != NULL;
+ return TRUE;
}
void