Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1549 → Rev 1550

/sved/trunk/sved.c
115,7 → 115,7
}
 
 
static int curline_resize(struct file far *db, unsigned short newsiz) {
static int curline_resize(struct file *db, unsigned short newsiz) {
unsigned int maxavail;
struct line far *newptr;
 
204,7 → 204,7
 
 
/* append a nul-terminated string to line at cursor position */
static int line_append(struct file *f, const char far *buf, unsigned short len) {
static int line_append(struct file *f, const char *buf, unsigned short len) {
if (sizeof(struct line) + f->cursor->len + len < len) goto ERR; /* overflow check */
if (curline_resize(f, f->cursor->len + len) != 0) goto ERR;