Fixed a bug when adjusting summary marked start time.

svn path=/trunk/; revision=23632
This commit is contained in:
Stig Bjørlykke 2007-11-28 01:04:11 +00:00
parent 111cedfc75
commit 482e3f7820
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
sum_tally->filtered_stop = cur_time;
} else {
if (cur_time < sum_tally->filtered_start) {
sum_tally->start_time = cur_time;
sum_tally->filtered_start = cur_time;
}
if (cur_time > sum_tally->filtered_stop) {
sum_tally->filtered_stop = cur_time;