silence two gcc warnings

This commit is contained in:
leitner 2005-04-01 21:07:10 +00:00
parent 0080e0311a
commit 7cd919d333
2 changed files with 3 additions and 1 deletions

View File

@ -1,9 +1,10 @@
#include <stdlib.h>
#include "iob_internal.h"
int iob_addbuf_internal(io_batch* b,const void* buf,uint64 n,int _free) {
iob_entry* e;
if (!n) {
if (_free) free(buf);
if (_free) free((char*)buf);
return 1;
}
e=array_allocate(&b->b,sizeof(iob_entry),array_length(&b->b,sizeof(iob_entry)));

1
t.c
View File

@ -323,5 +323,6 @@ int main(int argc,char* argv[]) {
write(1,tmp,x);
}
#endif
return 0;
}