summaryrefslogtreecommitdiffstatshomepage
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 14:01:46 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 14:01:46 +0000
commitf4174d477ac34e47067d4a9e45cc192f7271973a (patch)
treedf1b2b2804d6d665da36a734feea0971339a41b9 /term.c
parentaf3ec26c1e8e8d50cc32294e93062236153d2fa0 (diff)
downloadmandoc-f4174d477ac34e47067d4a9e45cc192f7271973a.tar.gz
mandoc-f4174d477ac34e47067d4a9e45cc192f7271973a.tar.zst
mandoc-f4174d477ac34e47067d4a9e45cc192f7271973a.zip
Bumped minor-number.
All sources converted to new schema.
Diffstat (limited to 'term.c')
-rw-r--r--term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term.c b/term.c
index d99fbd29..0aeaecfb 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.45 2009/03/08 13:57:07 kristaps Exp $ */
+/* $Id: term.c,v 1.46 2009/03/08 14:01:46 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -316,7 +316,7 @@ arg_listtype(const struct mdoc_node *n)
assert(MDOC_BLOCK == n->type);
- len = n->args ? n->args->argc : 0;
+ len = (int)(n->args ? n->args->argc : 0);
for (i = 0; i < len; i++)
switch (n->args->argv[i].arg) {