From 792762cbb772aaf51b391b8c492fc1285528dd88 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 15 Mar 2011 16:23:51 +0000 Subject: Make lint shut up a little bit. --- term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'term.c') diff --git a/term.c b/term.c index 0ffdedd7..6b48196b 100644 --- a/term.c +++ b/term.c @@ -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; -- cgit