From 69aa51d6949e1d3de01c2ea5805b786fa4d2822e Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 12 Nov 2009 05:58:30 +0000 Subject: FreeBSD sys/types inclusion fixed. --- term.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/term.c b/term.c index ae0742cd..4d44ad0f 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.125 2009/11/12 05:50:12 kristaps Exp $ */ +/* $Id: term.c,v 1.126 2009/11/12 05:58:30 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -14,6 +14,8 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include + #include #include #include @@ -527,7 +529,7 @@ buffera(struct termp *p, const char *word, size_t sz) if (p->col + sz >= p->maxcols) adjbuf(p, p->col + sz); - memcpy(&p->buf[p->col], word, sz); + memcpy(&p->buf[(int)p->col], word, sz); p->col += sz; } @@ -539,7 +541,7 @@ bufferc(struct termp *p, char c) if (p->col + 1 >= p->maxcols) adjbuf(p, p->col + 1); - p->buf[p->col++] = c; + p->buf[(int)p->col++] = c; } -- cgit v1.2.3-56-ge451