diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-history.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c index 4c5cf6cbe..5ea747080 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -202,7 +202,7 @@ ephy_history_load (EphyHistory *eb) return; doc = xmlParseFile (eb->priv->xml_file); - g_assert (doc != NULL); + g_return_if_fail (doc != NULL); root = xmlDocGetRootElement (doc); |