From 6b894156a6cd304f35a959d4388dfb1e1342e844 Mon Sep 17 00:00:00 2001 From: hackbard Date: Mon, 2 Feb 2004 02:40:40 +0000 Subject: [PATCH] some spaces added in print_rate function --- stream.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stream.c b/stream.c index aa8c52a..07439a5 100644 --- a/stream.c +++ b/stream.c @@ -47,8 +47,9 @@ int print_rate(struct timeval *time_start,int t) { :now.tv_usec-time_start->tv_usec; delta_t=sec_t*1000000+usec_t; kbs_t=(t/delta_t)*(1000000/1024); - count=printf("total: %d MByte - average: %d kB/s",t/(1024*1024),kbs_t); + count=printf("total: %d MByte - average: %d kB/s ",t/(1024*1024),kbs_t); while(count--) printf("\b"); + return 1; } -- 2.20.1