changeset 222:79bb10c082fb

Fix data flow error
author Frank Benoit <benoit@tionex.de>
date Wed, 09 Apr 2008 17:39:05 +0200
parents dc5328912f3d
children d0081b1505da
files dwt/dwthelper/BufferedInputStream.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/dwthelper/BufferedInputStream.d	Wed Apr 09 16:46:29 2008 +0200
+++ b/dwt/dwthelper/BufferedInputStream.d	Wed Apr 09 17:39:05 2008 +0200
@@ -50,7 +50,7 @@
         assert( pos == count );
         pos = 0;
         count = 0;
-        int count = getAndCheckIstr().read( buf );
+        count = getAndCheckIstr().read( buf );
         if( count < 0 ){
             count = 0;
             istr = null;