better units

This commit is contained in:
Jeff Hill
2001-02-15 22:27:47 +00:00
parent 94e8d24f5a
commit 2f3c7ae269

View File

@@ -84,8 +84,8 @@ void delayVerify::checkError () const
double percentError = measuredError / this->expectedDelay;
percentError *= 100.0;
if ( percentError > 1.0 ) {
printf ( "TEST FAILED timer delay = %f sec, error = %f sec (%f %%)\n",
this->expectedDelay, measuredError, percentError );
printf ( "TEST FAILED timer delay = %g sec, error = %g mSec (%f %%)\n",
this->expectedDelay, measuredError * 1000.0, percentError );
}
}