diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2010-06-29 19:45:06 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2010-06-29 19:45:06 +0000 |
commit | c53018b612ba9a7597918d97162d081a1fe5f2dd (patch) | |
tree | 5b49a3da62746630b5e2e89f81172657652cfda5 /mdoc_macro.c | |
parent | 96fde94cb8f00e8d4f8a77c547eefac96e07d0ae (diff) | |
download | mandoc-c53018b612ba9a7597918d97162d081a1fe5f2dd.tar.gz |
fix a typo in the function declaration;
seems like gcc3 didn't catch it :-(
thanks to thib@ and kristaps@ for reporting
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r-- | mdoc_macro.c | 2 |
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); |