summaryrefslogtreecommitdiff
path: root/src/nav.c
diff options
context:
space:
mode:
authorMichal Nowak newman x <Michal Nowak newman.x@gmail.com>2009-06-26 22:41:45 -0400
committerMichal Nowak newman x <Michal Nowak newman.x@gmail.com>2009-06-26 22:41:45 -0400
commit04923c8eb783a099e07e831bc6ce1a010d4cb69a (patch)
treef3ed14f7db5965c3e35059d986bf494a92548218 /src/nav.c
parentd56c2d5edcf109ef1544002d8a78e518f71db06c (diff)
Removed compiler warnings for unused return values
Diffstat (limited to 'src/nav.c')
-rw-r--r--src/nav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nav.c b/src/nav.c
index cdc0db5e..1be1ba98 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -597,5 +597,5 @@ int a_Nav_get_buf(const DilloUrl *Url, char **PBuf, int *BufSize)
*/
void a_Nav_unref_buf(const DilloUrl *Url)
{
- return a_Capi_unref_buf(Url);
+ a_Capi_unref_buf(Url);
}