aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-04 15:11:43 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-04 15:11:43 -0700
commitc67702a4989c450acd2c9f02fb65aa757f74880f (patch)
treef1def9222481625273521642d68db72c46b866b1 /io.cpp
parent5880cd88c8e378efb3c76e0cfdff99dce0edf810 (diff)
Cleaned up lots of typecasts, simplified some string handling
Diffstat (limited to 'io.cpp')
-rw-r--r--io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.cpp b/io.cpp
index d238e143..10648c5b 100644
--- a/io.cpp
+++ b/io.cpp
@@ -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 )
{