From bdd4bdd8615b1587974312a92219cbeab0068a7a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 31 Oct 2006 05:44:33 +0000 Subject: Changed the file class to be SFile so that it will collide less, all of them will be named like that, make life easier. --- src/tests/sha1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tests') diff --git a/src/tests/sha1.cpp b/src/tests/sha1.cpp index 51c5104..df3113c 100644 --- a/src/tests/sha1.cpp +++ b/src/tests/sha1.cpp @@ -1,5 +1,5 @@ #include "sha1.h" -#include "file.h" +#include "sfile.h" #define BS 1024 @@ -16,7 +16,7 @@ int main( int argc, char *argv[] ) char buf[BS]; Sha1 s; - File fin( *argv, "rb" ); + SFile fin( *argv, "rb" ); for(;;) { int nRead = fin.read( buf, BS ); -- cgit v1.2.3