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/unit/file.unit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/unit/file.unit') diff --git a/src/unit/file.unit b/src/unit/file.unit index e6320ad..911d8f6 100644 --- a/src/unit/file.unit +++ b/src/unit/file.unit @@ -48,7 +48,7 @@ if( s < 50 ) { unitTest( total == 256 ); - unitTest( sf.isEOS() == true ); + unitTest( sf.isEos() == true ); break; } } @@ -75,7 +75,7 @@ int r = sf.read( buf, 256 ); unitTest( r == 256 ); // You have to read past the end to set the EOS flag. - unitTest( sf.isEOS() == false ); + unitTest( sf.isEos() == false ); try { if( sf.read( buf, 5 ) > 0 ) -- cgit v1.2.3