This commit is contained in:
Glenn Maynard
2006-09-18 23:27:09 +00:00
parent 0e6a779446
commit 03ce23e9ea
11 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -344,7 +344,7 @@ bool RunTests( SoundReader *snd, const TestFile &tf )
if( !Identical )
{
LOG->Trace("Expected data:");
dump( tf.initial, ARRAYSIZE(tf.initial) );
dump( tf.initial, ARRAYLEN(tf.initial) );
LOG->Trace(" ");
Failed = true;
}
@@ -362,7 +362,7 @@ bool RunTests( SoundReader *snd, const TestFile &tf )
if( !Identical )
{
LOG->Trace("Expected half second data:");
dump( tf.later, ARRAYSIZE(tf.later) );
dump( tf.later, ARRAYLEN(tf.later) );
LOG->Trace("Got half second data:");
dump( LaterData, 16 );
Failed = true;