rhealstone/rhtaskpreempt/taskpreempt.c: Fix warning due to oddly placed semi-colon

This commit is contained in:
Joel Sherrill
2016-01-24 13:46:41 -06:00
parent 8c7c891e66
commit 2eb7932eff
@@ -99,8 +99,8 @@ rtems_task Init( rtems_task_argument ignored )
/* Find loop overhead */
benchmark_timer_initialize();
for ( count1 = 0; count1 < ( BENCHMARKS * 2 ) - 1; count1++ ); {
/* rtems_task_resume( Task_id[1] ); */
for ( count1 = 0; count1 < ( BENCHMARKS * 2 ) - 1; count1++ ) {
/* no statement */ ;
}
tloop_overhead = benchmark_timer_read();