From 33a65e4ac6c8ae4b5a26a84a6c739eafc1b340e9 Mon Sep 17 00:00:00 2001 From: adjoly Date: Sun, 17 Aug 2025 23:03:03 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix:=20omg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index b6e2168..bbb2727 100644 --- a/src/utils.c +++ b/src/utils.c @@ -70,7 +70,7 @@ void print_stats(void) { printf("--- %s ping statistics ---\n", address); printf("%d packets transmitted, %d packets received, %d%% packet loss\n", tx_count, rx_count, (100 * (tx_count - rx_count) / tx_count)); - printf("round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f\n", + printf("round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n", get_min_rtt(), get_avg_rtt(), get_max_rtt(), get_stddev_rtt()); }