Index: bench.cpp
===================================================================
RCS file: /cvsroot/cryptopp/c5/bench.cpp,v
retrieving revision 1.9
diff -u -r1.9 bench.cpp
--- bench.cpp	1 Aug 2003 03:07:33 -0000	1.9
+++ bench.cpp	2 Feb 2004 09:04:50 -0000
@@ -136,7 +136,7 @@
 	OutputResultBytes(name, double(blocks) * BUF_SIZE, timeTaken);
 }
 
-void BenchMark(const char *name, HashTransformation &hash, double timeTotal)
+void BenchMark(const char *name, HashTransformation &_hash, double timeTotal)
 {
 	const int BUF_SIZE=1024;
 	SecByteBlock buf(BUF_SIZE);
@@ -150,7 +150,7 @@
 	{
 		blocks *= 2;
 		for (; i<blocks; i++)
-			hash.Update(buf, BUF_SIZE);
+			_hash.Update(buf, BUF_SIZE);
 		timeTaken = double(clock() - start) / CLOCK_TICKS_PER_SECOND;
 	}
 	while (timeTaken < 2.0/3*timeTotal);
