=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- mandoc/term.c 2010/06/07 20:57:09 1.142 +++ mandoc/term.c 2010/06/07 21:03:02 1.143 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.142 2010/06/07 20:57:09 kristaps Exp $ */ +/* $Id: term.c,v 1.143 2010/06/07 21:03:02 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -315,7 +315,7 @@ alloc(char *outopts, enum termenc enc, enum termtype t while (outopts && *outopts) switch (getsubopt(&outopts, UNCONST(toks), &v)) { case (0): - width = atoi(v); + width = (size_t)atoi(v); break; default: break;