]> git.cameronkatri.com Git - mandoc.git/commitdiff
FreeBSD sys/types inclusion fixed.
authorKristaps Dzonsons <kristaps@bsd.lv>
Thu, 12 Nov 2009 05:58:30 +0000 (05:58 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Thu, 12 Nov 2009 05:58:30 +0000 (05:58 +0000)
term.c

diff --git a/term.c b/term.c
index ae0742cd56aa267d11d528716c83a3f98dfa8c6d..4d44ad0f11e6670d8d4caa09b855363a4ebcbf6d 100644 (file)
--- 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 <kristaps@kth.se>
  *
@@ -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 <sys/types.h>
+
 #include <assert.h>
 #include <ctype.h>
 #include <stdio.h>
@@ -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;
 }