]> git.cameronkatri.com Git - mandoc.git/commitdiff
fix a typo in the function declaration;
authorIngo Schwarze <schwarze@openbsd.org>
Tue, 29 Jun 2010 19:45:06 +0000 (19:45 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Tue, 29 Jun 2010 19:45:06 +0000 (19:45 +0000)
seems like gcc3 didn't catch it :-(
thanks to thib@ and kristaps@ for reporting

mdoc_macro.c

index 9b3ad1eb78595022809379e48459f5c5deb6b8cd..59739af82b5e96b10e990e54924fa2fab4e7f0e0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_macro.c,v 1.84 2010/06/29 19:24:14 schwarze Exp $ */
+/*     $Id: mdoc_macro.c,v 1.85 2010/06/29 19:45:06 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -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);