summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-08-14 12:11:20 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-08-16 08:25:24 +0100
commit473738083b3ce39febcef09afeeb101b77196c02 (patch)
treeefab6dd0a3448214fb5bbdbfdb2e10f482e47b68
parent8c11cfcd9d56824d0cc744bcfd66e7455bfa7b3e (diff)
downloadnetsurf-473738083b3ce39febcef09afeeb101b77196c02.tar.gz
netsurf-473738083b3ce39febcef09afeeb101b77196c02.tar.bz2
Fix several comments about return type.
-rw-r--r--desktop/global_history.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index 902d87980..7432be284 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -511,7 +511,7 @@ static bool global_history_add_entry(nsurl *url,
/**
* Initialise the treeview entry feilds
*
- * \return true on success, false on memory exhaustion
+ * \return NSERROR_OK on success, or appropriate error otherwise
*/
static nserror global_history_initialise_entry_fields(void)
{
@@ -580,7 +580,7 @@ error:
/**
* Initialise the time
*
- * \return true on success, false on memory exhaustion
+ * \return NSERROR_OK on success, or appropriate error otherwise
*/
static nserror global_history_initialise_time(void)
{
@@ -615,7 +615,7 @@ static nserror global_history_initialise_time(void)
/**
* Initialise the treeview entries
*
- * \return true on success, false on memory exhaustion
+ * \return NSERROR_OK on success, or appropriate error otherwise
*/
static nserror global_history_init_entries(void)
{