From 2febe9ae2c5fb4f6ebc5c776dad8434b6a87636f Mon Sep 17 00:00:00 2001 From: "Thomas \"Cakeisalie5\" Touhey" Date: Wed, 23 Nov 2016 08:14:12 +0100 Subject: [PATCH] Stupid errors. --- doc/g1m_free.3.txt | 9 --------- doc/g1m_strerror.3.txt | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/doc/g1m_free.3.txt b/doc/g1m_free.3.txt index c25044d..4036aad 100644 --- a/doc/g1m_free.3.txt +++ b/doc/g1m_free.3.txt @@ -22,15 +22,6 @@ DESCRIPTION ----------- Frees a handle opened with *g1m_open*(3) or *g1m_fopen*(3). -RETURN VALUE ------------- -This function returns zero if everything went well, and the error code -otherwise. - -ERRORS ------- -See *g1m_error*(3). - SEE ALSO -------- *libg1m*(3), diff --git a/doc/g1m_strerror.3.txt b/doc/g1m_strerror.3.txt index dbb05c6..3f3b408 100644 --- a/doc/g1m_strerror.3.txt +++ b/doc/g1m_strerror.3.txt @@ -15,7 +15,7 @@ SYNOPSIS ---- #include -const char g1m_strerror(int err); +const char *g1m_strerror(int err); printf("Couldn't perform action: %s\n", g1m_strerror(g1m_error_nostream)); ----