This commit is contained in:
Andreas Gocht-Zech
2023-08-20 22:28:43 +02:00
parent 668ae29c0a
commit 9d8c92356c

View File

@@ -200,8 +200,8 @@ void Process::getlast(u_int64_t *recvd, u_int64_t *sent) {
*sent = sum_sent - this->sent_last_reported;
*recvd = sum_recv - this->rcvd_last_reported;
this->sent_last_reported = *sent;
this->rcvd_last_reported = *recvd;
this->sent_last_reported = sum_sent;
this->rcvd_last_reported = sum_recv;
}