Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonev committed Jan 13, 2025
1 parent d199ce0 commit e8c5a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xxxid_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ inline struct xxxid_stats_arr *fetch_data(filter_callback filter) {
if (p->threads) {
arr_add(p->threads,s);
p->swapin_delay_total_p=mymax(p->swapin_delay_total_p,s->swapin_delay_total);
p->blkio_delay_total_p+=mymax(p->blkio_delay_total_p,s->blkio_delay_total);
p->blkio_delay_total_p=mymax(p->blkio_delay_total_p,s->blkio_delay_total);
p->read_bytes_p+=s->read_bytes;
p->write_bytes_p+=s->write_bytes;
}
Expand Down

0 comments on commit e8c5a51

Please sign in to comment.