diff options
-rw-r--r-- | tools/perf/builtin-lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-lock.c b/tools/perf/builtin-lock.c index d7dde9cbbdf4..e549f4547b98 100644 --- a/tools/perf/builtin-lock.c +++ b/tools/perf/builtin-lock.c | |||
@@ -496,7 +496,7 @@ report_lock_acquired_event(struct trace_acquired_event *acquired_event, | |||
496 | ls->wait_time_total += contended_term; | 496 | ls->wait_time_total += contended_term; |
497 | if (contended_term < ls->wait_time_min) | 497 | if (contended_term < ls->wait_time_min) |
498 | ls->wait_time_min = contended_term; | 498 | ls->wait_time_min = contended_term; |
499 | else if (ls->wait_time_max < contended_term) | 499 | if (ls->wait_time_max < contended_term) |
500 | ls->wait_time_max = contended_term; | 500 | ls->wait_time_max = contended_term; |
501 | break; | 501 | break; |
502 | case SEQ_STATE_RELEASED: | 502 | case SEQ_STATE_RELEASED: |