fixed C++ style comment in C file

This commit is contained in:
Jeff Hill
2001-01-27 00:23:16 +00:00
parent 728a319f3d
commit 8b2f9c138a
+1 -1
View File
@@ -1576,7 +1576,7 @@ void verifyReasonableBeaconPeriod ( chid chan )
epicsThreadSleep ( expectedBeaconPeriod * 2 );
beaconPeriod = ca_beacon_period ( chan );
error = fabs ( beaconPeriod - expectedBeaconPeriod );
// expect less than a 10% error
/* expect less than a 10% error */
assert ( error / expectedBeaconPeriod < 0.1 );
printf ( "done\n" );
}