diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-15 16:23:51 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-15 16:23:51 +0000 |
commit | 792762cbb772aaf51b391b8c492fc1285528dd88 (patch) | |
tree | 8886ac7ff1741e71906364d4357fc63ce7f6e2b6 /term.c | |
parent | 87d72e07e9c7935f4db2f36c4fc32716cd34b865 (diff) | |
download | mandoc-792762cbb772aaf51b391b8c492fc1285528dd88.tar.gz |
Make lint shut up a little bit.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -514,7 +514,7 @@ term_word(struct termp *p, const char *word) if ((ssz = strcspn(word, "\\")) > 0) encode(p, word, ssz); - word += ssz; + word += (int)ssz; if ('\\' != *word) continue; |