This commit is contained in:
Felix von Leitner 2001-05-12 03:16:27 +00:00
parent 9c865e6125
commit dc76be0acd
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ extern int buffer_stubborn_read(int (*op)(),int fd,const char* buf, unsigned int
int buffer_feed(buffer* b) {
if (b->p==b->n) {
int w;
if ((w=buffer_stubborn_read(b->op,b->fd,b->x,b->n))<0)
if ((w=buffer_stubborn_read(b->op,b->fd,b->x,b->a))<0)
return -1;
b->n=w;
b->p=0;