diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-07 21:03:02 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-07 21:03:02 +0000 |
commit | 637d837faad6802afce2856632a4fc04ac8c8500 (patch) | |
tree | 37de8d446325854a01a78f0fd12818adb004281d /term.c | |
parent | 7506d04e28e759651e3b7cf0f671282cfb8ab4fd (diff) | |
download | mandoc-637d837faad6802afce2856632a4fc04ac8c8500.tar.gz |
Lint fix.
Added J.C. Roberts' TODO note.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -315,7 +315,7 @@ alloc(char *outopts, enum termenc enc, enum termtype type) while (outopts && *outopts) switch (getsubopt(&outopts, UNCONST(toks), &v)) { case (0): - width = atoi(v); + width = (size_t)atoi(v); break; default: break; |