]> sjero.net Git - iperf/blobdiff - src/stdio.c
DCCP support for iperf
[iperf] / src / stdio.c
index 96782f79d0b4b0df283fb06a49cd0c9eb3b782a1..c6bc00390ba40654c17b86b72e22b1929e863f34 100644 (file)
@@ -238,7 +238,7 @@ void byte_snprintf( char* outString, int inLen,
     } else if ( inNum < 99.95 ) {   /* 99.95 would be rounded to 100 */
         format = "%4.1f %s";        /* ##.# */
     } else if ( inNum < 999.5 ) {   /* 999.5 would be rounded to 1000 */
-       format = " %4.0f %s";       /*  ### */
+        format = "%4.0f %s";        /*  ### */
     } else {                        /* 1000-1024 fits in 4 places 
                                     * If not using Adaptive sizes then
                                     * this code will not control spaces*/