aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 12:08:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 12:08:01 +0000
commitaaf3aefe601def2a73856a6d8af57f6116e2616b (patch)
tree0d557c37bcebbec92ec640c9de794cf6d7c86f7f /mandoc.h
parent6826c9275f2d9e9f18b49ffd5af619d3564cdd3e (diff)
downloadmandoc-aaf3aefe601def2a73856a6d8af57f6116e2616b.tar.gz
mandoc-aaf3aefe601def2a73856a6d8af57f6116e2616b.tar.zst
mandoc-aaf3aefe601def2a73856a6d8af57f6116e2616b.zip
mandocmsg finally has no return value.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mandoc.h b/mandoc.h
index 447dbd55..0398f636 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.60 2011/03/17 09:16:38 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.61 2011/03/17 12:08:01 kristaps Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -328,7 +328,7 @@ enum mdelim {
DELIM_CLOSE
};
-typedef int (*mandocmsg)(enum mandocerr, void *,
+typedef void (*mandocmsg)(enum mandocerr, void *,
int, int, const char *);
__BEGIN_DECLS