diff options
author | 2010-06-29 19:42:03 +0000 | |
---|---|---|
committer | 2010-06-29 19:42:03 +0000 | |
commit | ee61b3ecac5440d925811b0000d48b79ff4bbef1 (patch) | |
tree | 592db9cc2fa0cdfa11e132ae7c50adf96be8685c /usr.bin/mandoc/mdoc_macro.c | |
parent | Add missing frees. (diff) | |
download | wireguard-openbsd-ee61b3ecac5440d925811b0000d48b79ff4bbef1.tar.xz wireguard-openbsd-ee61b3ecac5440d925811b0000d48b79ff4bbef1.zip |
fix a typo in the function declaration;
seems like gcc3 didn't catch it :-(
thanks to thib@ and kristaps@ for reporting
Diffstat (limited to 'usr.bin/mandoc/mdoc_macro.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_macro.c b/usr.bin/mandoc/mdoc_macro.c index 29e70326681..29e36ff0cf5 100644 --- a/usr.bin/mandoc/mdoc_macro.c +++ b/usr.bin/mandoc/mdoc_macro.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_macro.c,v 1.48 2010/06/29 18:01:10 schwarze Exp $ */ +/* $Id: mdoc_macro.c,v 1.49 2010/06/29 19:42:03 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -48,7 +48,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); |