Fix a bad typo

Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
This commit is contained in:
Adrien Gallouët
2020-01-09 22:25:00 +00:00
parent 2811e2383f
commit 0a9a139409

2
mud.c
View File

@@ -1210,7 +1210,7 @@ mud_update_window(struct mud *mud, struct mud_path *path, uint64_t now,
if (tx_acc > 10000) {
path->msg.tx.acc = tx_acc - (tx_acc >> 3);
path->msg.rx.acc = rx_acc - (tx_acc >> 3);
path->msg.rx.acc = rx_acc - (rx_acc >> 3);
} else {
path->msg.tx.acc = tx_acc;
path->msg.rx.acc = rx_acc;