make the previous patch compile.

This commit is contained in:
christos 2012-01-21 19:49:56 +00:00
parent 2388feef61
commit ab450fcb83
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cut.c,v 1.6 2012/01/21 19:32:37 christos Exp $ */
/* $NetBSD: cut.c,v 1.7 2012/01/21 19:49:56 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@ -134,7 +134,7 @@ copyloop:
}
#define ENTIRE_LINE -1
#define ENTIRE_LINE (size_t)-1
/* In line mode, it's pretty easy, just cut the lines. */
if (LF_ISSET(CUT_LINEMODE)) {
cbp->flags |= CB_LMODE;
@ -257,6 +257,7 @@ cut_line(SCR *sp, db_recno_t lno, size_t fcno, size_t clen, CB *cbp)
* copy the portion we want, and reset the TEXT length.
*/
if (len != 0) {
/*###260 [cc] error: comparison between signed and unsigned integer expressions%%%*/
if (clen == ENTIRE_LINE)
clen = len - fcno;
MEMCPYW(tp->lb, p + fcno, clen);

View File

@ -1,4 +1,4 @@
/* $NetBSD: delete.c,v 1.4 2012/01/21 19:35:02 christos Exp $ */
/* $NetBSD: delete.c,v 1.5 2012/01/21 19:49:56 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@ -65,7 +65,7 @@ del(SCR *sp, MARK *fm, MARK *tm, int lmode)
if (tm->lno == lno) {
if (db_get(sp, lno, DBG_FATAL, &p, &len))
return (1);
eof = tm->cno != -1 && tm->cno >= len ? 1 : 0;
eof = tm->cno != (size_t)-1 && tm->cno >= len ? 1 : 0;
} else
eof = 1;
if (eof) {