diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-12 12:52:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-12 12:52:50 +0000 |
commit | ba7921a06ba00e108e0f5436948e665c1f21ee64 (patch) | |
tree | 171052389d7ec5ff0eb5699da30e2499885426a2 /mdoc_action.c | |
parent | 725e38dea0823960cd95c9477c6434e08d2e787f (diff) | |
download | mandoc-ba7921a06ba00e108e0f5436948e665c1f21ee64.tar.gz |
Lint fixes (no effect).
Versioning up.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index 96945c4f..660f1fff 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -538,7 +538,8 @@ post_bl_tagwidth(struct mdoc *m) * width if a macro. */ - if ((n = m->last->body->child)) { + n = m->last->body->child; + if (n) { assert(MDOC_BLOCK == n->type); assert(MDOC_It == n->tok); n = n->head->child; |