diff options
author | Leah Neukirchen <leah@vuxu.org> | 2024-02-24 00:08:37 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2024-02-24 00:16:03 +0100 |
commit | d02ece29c97b887180f36e4477c69562e3cc2000 (patch) | |
tree | b21c185f0e1a8d8dc527fc8485d842aad9bd1833 | |
parent | abd277cc1b6e994af243035d4629a91903a9b3ee (diff) | |
download | htping-d02ece29c97b887180f36e4477c69562e3cc2000.tar.gz htping-d02ece29c97b887180f36e4477c69562e3cc2000.tar.xz htping-d02ece29c97b887180f36e4477c69562e3cc2000.zip |
consistent unit formatting
-rw-r--r-- | htping.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htping.go b/htping.go index ae3f196..83c6a5e 100644 --- a/htping.go +++ b/htping.go @@ -260,7 +260,7 @@ func stats(results chan result, done chan bool) { case <-done: stop := time.Now() if ntotal > 0 { - fmt.Printf("\n%d requests sent, %d (%d%%) responses, %d (%d%%) successful, time %dms\n", + fmt.Printf("\n%d requests sent, %d (%d%%) responses, %d (%d%%) successful, time %d ms\n", ntotal, nrecv, (100*nrecv)/int(ntotal), |