=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.177 retrieving revision 1.178 diff -u -p -r1.177 -r1.178 --- mandoc/term.c 2011/01/30 16:05:37 1.177 +++ mandoc/term.c 2011/03/15 16:23:51 1.178 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.177 2011/01/30 16:05:37 schwarze Exp $ */ +/* $Id: term.c,v 1.178 2011/03/15 16:23:51 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010, 2011 Ingo Schwarze @@ -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;