diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-06-29 19:42:04 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-06-29 19:42:04 +0000 |
commit | 752e13003d3f50cf77229b00727f7a386d28facf (patch) | |
tree | ada68de7bd5f9c9fd3e7706c4d9e1a0e83e5406a /usr.bin/mandoc | |
parent | 41f07e2503e9bee621d6cafa35cd78158b7d32f8 (diff) |
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')
-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); |