summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2010-06-29 19:45:06 +0000
committerIngo Schwarze <schwarze@openbsd.org>2010-06-29 19:45:06 +0000
commitc53018b612ba9a7597918d97162d081a1fe5f2dd (patch)
tree5b49a3da62746630b5e2e89f81172657652cfda5
parent96fde94cb8f00e8d4f8a77c547eefac96e07d0ae (diff)
downloadmandoc-c53018b612ba9a7597918d97162d081a1fe5f2dd.tar.gz
fix a typo in the function declaration;
seems like gcc3 didn't catch it :-( thanks to thib@ and kristaps@ for reporting
-rw-r--r--mdoc_macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index 458765ba..f292affc 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -52,7 +52,7 @@ static int append_delims(struct mdoc *,
int, int *, char *);
static enum mdoct lookup(enum mdoct, const char *);
static enum mdoct lookup_raw(const char *);
-static int make_pending(struct mdoc_node *, enum mdoc_type,
+static int make_pending(struct mdoc_node *, enum mdoct,
struct mdoc *, int, int);
static int phrase(struct mdoc *, int, int, char *);
static enum mdoct rew_alt(enum mdoct);