Cleaned up lots of typecasts, simplified some string handling

This commit is contained in:
ridiculousfish
2012-08-04 15:11:43 -07:00
parent 5880cd88c8
commit c67702a498
19 changed files with 54 additions and 116 deletions

2
io.cpp
View File

@@ -64,7 +64,7 @@ void io_buffer_read( io_data_t *d )
while(1)
{
char b[4096];
int l;
long l;
l=read_blocked( d->param1.pipe_fd[0], b, 4096 );
if( l==0 )
{