fix buffer initializer.

This commit is contained in:
leitner 2001-05-12 03:05:36 +00:00
parent 6eca5174a8
commit bb7870034f
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 = ⁢