summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/client/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 292da56497..bff0036505 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -735,7 +735,7 @@ static void do_get(char *rname,char *lname)
get_total_time_ms += this_time;
get_total_size += nread;
- DEBUG(2,("(%g kb/s) (average %g kb/s)\n",
+ DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
nread / (1.024*this_time + 1.0e-4),
get_total_size / (1.024*get_total_time_ms)));
}
@@ -1053,7 +1053,7 @@ static void do_put(char *rname,char *lname)
put_total_time_ms += this_time;
put_total_size += nread;
- DEBUG(1,("(%g kb/s) (average %g kb/s)\n",
+ DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
nread / (1.024*this_time + 1.0e-4),
put_total_size / (1.024*put_total_time_ms)));
}