about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2024-02-24 00:08:37 +0100
committerLeah Neukirchen <leah@vuxu.org>2024-02-24 00:16:03 +0100
commitd02ece29c97b887180f36e4477c69562e3cc2000 (patch)
treeb21c185f0e1a8d8dc527fc8485d842aad9bd1833
parentabd277cc1b6e994af243035d4629a91903a9b3ee (diff)
downloadhtping-d02ece29c97b887180f36e4477c69562e3cc2000.tar.gz
htping-d02ece29c97b887180f36e4477c69562e3cc2000.tar.xz
htping-d02ece29c97b887180f36e4477c69562e3cc2000.zip
consistent unit formatting
-rw-r--r--htping.go2
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),