diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 17:32:04 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 17:32:04 +0000 |
commit | 488122cea4707e12b07fcc3116f7b07b4ddd7ab0 (patch) | |
tree | 74283cda878ab040a1e157e7892e0d55d0b14aab /term_ascii.c | |
parent | 39ff6e4b0b3b7a522539aec9a027f1b265b6d8ae (diff) | |
download | mandoc-488122cea4707e12b07fcc3116f7b07b4ddd7ab0.tar.gz |
Remove unnecessary conditional...
Diffstat (limited to 'term_ascii.c')
-rw-r--r-- | term_ascii.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/term_ascii.c b/term_ascii.c index 3517b341..81fc4beb 100644 --- a/term_ascii.c +++ b/term_ascii.c @@ -48,8 +48,7 @@ ascii_alloc(char *outopts) const char *toks[2]; char *v; - if (NULL == (p = term_alloc(TERMENC_ASCII))) - return(NULL); + p = term_alloc(TERMENC_ASCII); p->tabwidth = 5; p->defrmargin = 78; |