From 0a9a1394096b0ebe6e918a18c35c6ced33c0fc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Thu, 9 Jan 2020 22:25:00 +0000 Subject: [PATCH] Fix a bad typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- mud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mud.c b/mud.c index 1d53ba0..a4eb7aa 100644 --- a/mud.c +++ b/mud.c @@ -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;