diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-10-16 12:20:34 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-10-16 12:20:34 +0000 |
commit | 855d59ab582ff06a37b6864586bd5d5aa61018a2 (patch) | |
tree | ec50e0edd6a8458edd410b827c40dbf7d4a7b786 /mdoc_html.c | |
parent | 14297a71223fc5ff079a17f339ddbf603eaca3bf (diff) | |
download | mandoc-855d59ab582ff06a37b6864586bd5d5aa61018a2.tar.gz |
Remove a bunch of useless assignments,
and assert that print_bvspace cannot be called on NULL pointers.
No change in behaviour, none of these were bugs,
but the code becomes easier to understand.
Based on a clang report posted by joerg@; ok kristaps@.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 0701f22d..d1031328 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -503,7 +503,7 @@ mdoc_root_post(MDOC_ARGS) print_otag(h, TAG_COL, 1, tag); print_otag(h, TAG_COL, 1, tag); - t = print_otag(h, TAG_TBODY, 0, NULL); + print_otag(h, TAG_TBODY, 0, NULL); tt = print_otag(h, TAG_TR, 0, NULL); |