From fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 31 Jul 2009 20:51:28 +0000 Subject: I switched the Bu::Stream::isEOS function to be named Bu::Stream::isEos, and also made sure the copyright is at the top of all the files, it's been too long. Anyway, this may effect some code, but not much, and it's an easy enough fix. --- src/tests/bzip2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tests/bzip2.cpp') diff --git a/src/tests/bzip2.cpp b/src/tests/bzip2.cpp index 77dc064..d8c9cc7 100644 --- a/src/tests/bzip2.cpp +++ b/src/tests/bzip2.cpp @@ -29,7 +29,7 @@ int main( int argc, char *argv[] ) nRead = fin.read( buf, 1024 ); if( nRead > 0 ) bz2.write( buf, nRead ); - if( fin.isEOS() ) + if( fin.isEos() ) break; } } -- cgit v1.2.3