fix buffer initializer.

master
Felix von Leitner 2001-05-12 03:05:36 +00:00
parent f3ce612e36
commit b253680f63
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ static int b0read(int fd,const char* buf, unsigned int len) {
}
char buffer_0_space[BUFFER_INSIZE];
static buffer it = BUFFER_INIT(b0read,0,buffer_0_space,sizeof buffer_0_space);
static buffer it = BUFFER_INIT(b0read,0,buffer_0_space,0);
buffer *buffer_0 = ⁢

View File

@ -7,6 +7,6 @@ static int b0read(int fd,const char* buf, unsigned int len) {
}
char buffer_0_space[128];
static buffer it = BUFFER_INIT(b0read,0,buffer_0_space,sizeof buffer_0_space);
static buffer it = BUFFER_INIT(b0read,0,buffer_0_space,0);
buffer *buffer_0small = ⁢