diff options
author | robi <robi> | 2010-05-28 17:43:47 +0000 |
---|---|---|
committer | robi <robi> | 2010-05-28 17:43:47 +0000 |
commit | 13ed8b8137fd7ee896a84fe15b94efef9967e2bd (patch) | |
tree | a4c4d44abdfedfa5bf375ad5ddd4fb218e07312b | |
parent | 019e217e704f87d2588e42d116411dd4487c6348 (diff) |
corrected cr_time in the histogram
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -240,7 +240,7 @@ void print_coll_list(__u32 t_after, __u32 t_before, int flag){ break; } if (cr_time){ - if ((cr_time < hist[j].time) && (c_time > hist[j-1].time)){ + if ((cr_time < hist[j].time) && (cr_time > hist[j-1].time)){ hist[j].cr_count++; crt_found = 1; cr_time = 0 ; |